Ticket #21358: patch_pg_config_h.diff
File patch_pg_config_h.diff, 692 bytes (added by Veence (Vincent), 15 years ago) |
---|
-
pg_config.h
old new 685 685 /* The size of `off_t', as computed by sizeof. */ 686 686 #define SIZEOF_OFF_T 8 687 687 688 #ifdef __LP64__ 689 #define SZ 8 690 #else 691 #define SZ 4 692 #endif 693 688 694 /* The size of `size_t', as computed by sizeof. */ 689 #define SIZEOF_SIZE_T 8695 #define SIZEOF_SIZE_T SZ 690 696 691 697 /* The size of `unsigned long', as computed by sizeof. */ 692 #define SIZEOF_UNSIGNED_LONG 8698 #define SIZEOF_UNSIGNED_LONG SZ 693 699 694 700 /* The size of `void *', as computed by sizeof. */ 695 #define SIZEOF_VOID_P 8701 #define SIZEOF_VOID_P SZ 696 702 697 703 /* Define to 1 if you have the ANSI C header files. */ 698 704 #define STDC_HEADERS 1