From fdf773fa8f5079ea9194d6a0ed01631d4ccd99a9 Mon Sep 17 00:00:00 2001 From: Marius Vollmer Date: Mon, 12 Nov 2001 01:00:40 +0000 Subject: [PATCH] Define HAVE_UINTPTR_T, HAVE_PTRDIFF_T and HAVE_LONG_LONG depending on whether their size is non-zero. --- libguile/__scm.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/libguile/__scm.h b/libguile/__scm.h index 2ae4cdf29..29abc9d09 100644 --- a/libguile/__scm.h +++ b/libguile/__scm.h @@ -293,6 +293,19 @@ * - ... add more */ +#if SIZEOF_UINTPTR_T != 0 +#define HAVE_UINTPTR_T +#endif + +#if SIZEOF_PTRDIFF_T != 0 +#define HAVE_PTRDIFF_T +#endif + +#if SIZEOF_LONG_LONG != 0 +#define HAVE_LONG_LONGS +#define HAVE_LONG_LONG +#endif + #ifndef HAVE_PTRDIFF_T typedef long ptrdiff_t; #endif