mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-19 05:39:18 +02:00
Merge pull request #639 from Donaim/638
Avoid undefined C macro behavior
This commit is contained in:
commit
4be920986f
1 changed files with 5 additions and 1 deletions
|
@ -451,7 +451,11 @@
|
|||
#endif
|
||||
|
||||
#ifndef SEXP_USE_TIME_GC
|
||||
#define SEXP_USE_TIME_GC (SEXP_USE_DEBUG_GC > 0 || defined(__linux) || SEXP_BSD)
|
||||
#if SEXP_USE_DEBUG_GC > 0 || defined(__linux) || SEXP_BSD
|
||||
#define SEXP_USE_TIME_GC 1
|
||||
#else
|
||||
#define SEXP_USE_TIME_GC 0
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifndef SEXP_USE_SAFE_GC_MARK
|
||||
|
|
Loading…
Add table
Reference in a new issue