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

libguile/_scm.h

index fae73be..3a2c390 100644 (file)
@@ -88,8 +88,8 @@
    */
 
 #ifdef HAVE_RESTARTABLE_SYSCALLS
-#ifndef SCM_USE_PTHREAD_THREADS /* However, don't assume SA_RESTART 
-                                   works with pthreads... */
+#if ! SCM_USE_PTHREAD_THREADS /* However, don't assume SA_RESTART 
+                                 works with pthreads... */
 #define SCM_SYSCALL(line) line
 #endif
 #endif