guile-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

guile/guile-core/libguile __scm.h


From: Marius Vollmer
Subject: guile/guile-core/libguile __scm.h
Date: Sun, 11 Nov 2001 20:00:41 -0500

CVSROOT:        /cvs
Module name:    guile
Changes by:     Marius Vollmer <address@hidden> 01/11/11 20:00:40

Modified files:
        guile-core/libguile: __scm.h 

Log message:
        Define HAVE_UINTPTR_T, HAVE_PTRDIFF_T and HAVE_LONG_LONG depending on
        whether their size is non-zero.

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/libguile/__scm.h.diff?cvsroot=OldCVS&tr1=1.79&tr2=1.80&r1=text&r2=text

Patches:
Index: guile/guile-core/libguile/__scm.h
diff -u guile/guile-core/libguile/__scm.h:1.79 
guile/guile-core/libguile/__scm.h:1.80
--- guile/guile-core/libguile/__scm.h:1.79      Sun Nov  4 10:52:29 2001
+++ guile/guile-core/libguile/__scm.h   Sun Nov 11 20:00:40 2001
@@ -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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]