Ticket #17042: patch-config.h.diff
File patch-config.h.diff, 760 bytes (added by jmroot (Joshua Root), 16 years ago) |
---|
-
config.h
old new 593 593 #define SIZEOF_INT 4 594 594 595 595 /* The size of `long', as computed by sizeof. */ 596 #ifdef __LP64__ 596 597 #define SIZEOF_LONG 8 598 #else 599 #define SIZEOF_LONG 4 600 #endif 597 601 598 602 /* The size of `long long', as computed by sizeof. */ 599 603 #define SIZEOF_LONG_LONG 8 … … 602 606 #define SIZEOF_SHORT 2 603 607 604 608 /* The size of `size_t', as computed by sizeof. */ 609 #ifdef __LP64__ 605 610 #define SIZEOF_SIZE_T 8 611 #else 612 #define SIZEOF_SIZE_T 4 613 #endif 606 614 607 615 /* The size of `void *', as computed by sizeof. */ 616 #ifdef __LP64__ 608 617 #define SIZEOF_VOID_P 8 618 #else 619 #define SIZEOF_VOID_P 4 620 #endif 609 621 610 622 /* The size of `__int64', as computed by sizeof. */ 611 623 #define SIZEOF___INT64 0