1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-18 17:50:29 +02:00

Define HAVE_UINTPTR_T, HAVE_PTRDIFF_T and HAVE_LONG_LONG depending on

whether their size is non-zero.
This commit is contained in:
Marius Vollmer 2001-11-12 01:00:40 +00:00
parent 35656ebcef
commit fdf773fa8f

View file

@ -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