1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 19:50:24 +02:00

* gc.h: fix various preprocessor usages of new public

symbols to expect 0 or 1 values rather than 1 or undefined.
i.e. change #ifdef to #if, etc.
This commit is contained in:
Rob Browning 2003-03-27 20:08:10 +00:00
parent 25e789d565
commit ca74704af0

View file

@ -50,10 +50,10 @@
#include "libguile/hooks.h" #include "libguile/hooks.h"
#ifdef SCM_USE_PTHREAD_THREADS #if SCM_USE_PTHREAD_THREADS
#include "libguile/pthread-threads.h" # include "libguile/pthread-threads.h"
#else #else
#include "libguile/null-threads.h" # include "libguile/null-threads.h"
#endif #endif