mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-09 15:10:29 +02:00
Users will want to set options from an environment variable or something like that. Particular GC implementations will want to expose an expanded set of options. For these reasons we make the options interface a bit more generalized and include parsing.
11 lines
207 B
C
11 lines
207 B
C
#ifndef GC_INTERNAL_H
|
|
#define GC_INTERNAL_H
|
|
|
|
#ifndef GC_IMPL
|
|
#error internal header file, not part of API
|
|
#endif
|
|
|
|
#include "gc-ephemeron-internal.h"
|
|
#include "gc-options-internal.h"
|
|
|
|
#endif // GC_INTERNAL_H
|