mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-09 23:40:29 +02:00
20 lines
263 B
C
20 lines
263 B
C
#ifndef GC_CONFIG_H
|
|
#define GC_CONFIG_H
|
|
|
|
#ifndef GC_DEBUG
|
|
#define GC_DEBUG 0
|
|
#endif
|
|
|
|
#ifndef GC_PARALLEL
|
|
#define GC_PARALLEL 0
|
|
#endif
|
|
|
|
#ifndef GC_GENERATIONAL
|
|
#define GC_GENERATIONAL 0
|
|
#endif
|
|
|
|
#ifndef GC_PRECISE
|
|
#define GC_PRECISE 0
|
|
#endif
|
|
|
|
#endif // GC_CONFIG_H
|