1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 03:30:27 +02:00

* stackchk.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:09:56 +00:00
parent 8dda3eea36
commit 6c4eb8e12e

View file

@ -66,7 +66,7 @@
#endif
#ifdef STACK_CHECKING
# ifdef SCM_STACK_GROWS_UP
# if SCM_STACK_GROWS_UP
# define SCM_STACK_OVERFLOW_P(s)\
(s > ((SCM_STACKITEM *) SCM_BASE (scm_rootcont) + SCM_STACK_LIMIT))
# else