1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 19:50:24 +02:00

(HAVE_UINTPTR_T, HAVE_PTRDIFF_T, HAVE_LONG_LONG, HAVE_LONG_LONGS):

Define to "1" when defining them, to mirror what configure does.
This commit is contained in:
Marius Vollmer 2001-11-13 14:28:42 +00:00
parent 28206d0466
commit cd99053982

View file

@ -294,16 +294,16 @@
*/ */
#if SIZEOF_UINTPTR_T != 0 #if SIZEOF_UINTPTR_T != 0
#define HAVE_UINTPTR_T #define HAVE_UINTPTR_T 1
#endif #endif
#if SIZEOF_PTRDIFF_T != 0 #if SIZEOF_PTRDIFF_T != 0
#define HAVE_PTRDIFF_T #define HAVE_PTRDIFF_T 1
#endif #endif
#if SIZEOF_LONG_LONG != 0 #if SIZEOF_LONG_LONG != 0
#define HAVE_LONG_LONGS #define HAVE_LONG_LONGS 1
#define HAVE_LONG_LONG #define HAVE_LONG_LONG 1
#endif #endif
#ifndef HAVE_PTRDIFF_T #ifndef HAVE_PTRDIFF_T