* stackchk.c: fix various preprocessor usages of new public
[bpt/guile.git] / libguile / stackchk.c
index 6d31078..d3a1190 100644 (file)
@@ -74,11 +74,11 @@ long
 scm_stack_size (SCM_STACKITEM *start)
 {
   SCM_STACKITEM stack;
-#ifdef SCM_STACK_GROWS_UP
+#if SCM_STACK_GROWS_UP
   return &stack - start;
 #else
   return start - &stack;
-#endif /* def SCM_STACK_GROWS_UP */
+#endif /* SCM_STACK_GROWS_UP */
 }