racket/src/mzscheme/gc2/stack_comp.c
2006-07-04 14:46:08 +00:00

8 lines
214 B
C

#include "mzconfig.h"
#if STACK_DIRECTION > 0
# define SHALLOWER_STACK_ADDRESS(a, b) ((unsigned long)a > (unsigned long)b)
#else
# define SHALLOWER_STACK_ADDRESS(a, b) ((unsigned long)a < (unsigned long)b)
#endif