1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-11 16:20:19 +02:00
guile/gc.h
2022-07-20 14:40:44 +02:00

17 lines
286 B
C

#ifndef GC_H_
#define GC_H_
#if defined(GC_BDW)
#include "bdw.h"
#elif defined(GC_SEMI)
#include "semi.h"
#elif defined(GC_WHIPPET)
#include "whippet.h"
#elif defined(GC_PARALLEL_WHIPPET)
#define GC_PARALLEL_TRACE 1
#include "whippet.h"
#else
#error unknown gc
#endif
#endif // GC_H_