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

* feature.c: 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:07:23 +00:00
parent 005f04cd6c
commit 4efd15dc3b

View file

@ -120,7 +120,7 @@ scm_init_feature()
#ifndef CHEAP_CONTINUATIONS
scm_add_feature ("full-continuation");
#endif
#ifndef SCM_USE_NULL_THREADS
#if SCM_USE_NULL_THREADS
scm_add_feature ("threads");
#endif