1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

* threads.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:10:18 +00:00
parent d028af45bf
commit ed1403c6b5

View file

@ -248,10 +248,10 @@ SCM_API SCM scm_thread_exited_p (SCM thread);
SCM_API scm_root_state *scm_i_thread_root (SCM thread);
#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
#define SCM_CURRENT_THREAD \