diff options
author | Marius Vollmer <mvo@zagadka.de> | 2001-11-13 14:28:42 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2001-11-13 14:28:42 +0000 |
commit | cd99053982a30802b4468adde0e4c8c6725baf3f (patch) | |
tree | a5f5a33184b51efc259f89847205f3a07e7fd185 | |
parent | 28206d04662df7fe366623228a8953d3ce3f6e0c (diff) | |
download | guile-cd99053982a30802b4468adde0e4c8c6725baf3f.tar.gz |
(HAVE_UINTPTR_T, HAVE_PTRDIFF_T, HAVE_LONG_LONG, HAVE_LONG_LONGS):
Define to "1" when defining them, to mirror what configure does.
-rw-r--r-- | libguile/__scm.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libguile/__scm.h b/libguile/__scm.h index 29abc9d09..d9e26cada 100644 --- a/libguile/__scm.h +++ b/libguile/__scm.h @@ -294,16 +294,16 @@ */ #if SIZEOF_UINTPTR_T != 0 -#define HAVE_UINTPTR_T +#define HAVE_UINTPTR_T 1 #endif #if SIZEOF_PTRDIFF_T != 0 -#define HAVE_PTRDIFF_T +#define HAVE_PTRDIFF_T 1 #endif #if SIZEOF_LONG_LONG != 0 -#define HAVE_LONG_LONGS -#define HAVE_LONG_LONG +#define HAVE_LONG_LONGS 1 +#define HAVE_LONG_LONG 1 #endif #ifndef HAVE_PTRDIFF_T |