* gc.h: fix various preprocessor usages of new public
authorRob Browning <rlb@defaultvalue.org>
Thu, 27 Mar 2003 20:08:10 +0000 (20:08 +0000)
committerRob Browning <rlb@defaultvalue.org>
Thu, 27 Mar 2003 20:08:10 +0000 (20:08 +0000)
symbols to expect 0 or 1 values rather than 1 or undefined.
i.e. change #ifdef to #if, etc.

libguile/gc.h

index 106da56..a2d7fc0 100644 (file)
 
 #include "libguile/hooks.h"
 
-#ifdef SCM_USE_PTHREAD_THREADS
-#include "libguile/pthread-threads.h"
+#if SCM_USE_PTHREAD_THREADS
+# include "libguile/pthread-threads.h"
 #else
-#include "libguile/null-threads.h"
+# include "libguile/null-threads.h"
 #endif
 
 \f