diff -ur i386/config.h x86_64/config.h
old
|
new
|
|
2 | 2 | /* config.h.in. Generated from configure.ac by autoheader. */ |
3 | 3 | |
4 | 4 | /* Define to the number of bits in type 'ptrdiff_t'. */ |
5 | | #define BITSIZEOF_PTRDIFF_T 32 |
| 5 | #define BITSIZEOF_PTRDIFF_T 64 |
6 | 6 | |
7 | 7 | /* Define to the number of bits in type 'sig_atomic_t'. */ |
8 | 8 | #define BITSIZEOF_SIG_ATOMIC_T 32 |
9 | 9 | |
10 | 10 | /* Define to the number of bits in type 'size_t'. */ |
11 | | #define BITSIZEOF_SIZE_T 32 |
| 11 | #define BITSIZEOF_SIZE_T 64 |
12 | 12 | |
13 | 13 | /* Define to the number of bits in type 'wchar_t'. */ |
14 | 14 | #define BITSIZEOF_WCHAR_T 32 |
… |
… |
|
288 | 288 | |
289 | 289 | /* Define to l, ll, u, ul, ull, etc., as suitable for constants of type |
290 | 290 | 'ptrdiff_t'. */ |
291 | | #define PTRDIFF_T_SUFFIX |
| 291 | #define PTRDIFF_T_SUFFIX l |
292 | 292 | |
293 | 293 | /* Define this to 1 if strerror is broken. */ |
diff -ur i386/srclib/stdint.h x86_64/srclib/stdint.h
old
|
new
|
|
412 | 412 | #undef PTRDIFF_MIN |
413 | 413 | #undef PTRDIFF_MAX |
414 | 414 | #define PTRDIFF_MIN \ |
415 | | _STDINT_MIN (1, 32, 0) |
| 415 | _STDINT_MIN (1, 64, 0l) |
416 | 416 | #define PTRDIFF_MAX \ |
417 | | _STDINT_MAX (1, 32, 0) |
| 417 | _STDINT_MAX (1, 64, 0l) |
418 | 418 | |
419 | 419 | /* sig_atomic_t limits */ |
420 | 420 | #undef SIG_ATOMIC_MIN |
… |
… |
|
429 | 429 | |
430 | 430 | /* size_t limit */ |
431 | 431 | #undef SIZE_MAX |
432 | | #define SIZE_MAX _STDINT_MAX (0, 32, 0ul) |
| 432 | #define SIZE_MAX _STDINT_MAX (0, 64, 0ul) |
433 | 433 | |
434 | 434 | /* wchar_t limits */ |
435 | 435 | #undef WCHAR_MIN |