diff options
Diffstat (limited to 'libguile/gc.h')
-rw-r--r-- | libguile/gc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libguile/gc.h b/libguile/gc.h index 05412bccf..939f80071 100644 --- a/libguile/gc.h +++ b/libguile/gc.h @@ -155,6 +155,8 @@ typedef unsigned long scm_t_c_bvec_long; /* testing and changing GC marks */ #define SCM_GC_MARK_P(x) SCM_GC_CELL_GET_BIT (x) + +void ensure_marking(void); #define SCM_SET_GC_MARK(x) SCM_GC_CELL_SET_BIT (x) #define SCM_CLEAR_GC_MARK(x) SCM_GC_CELL_CLEAR_BIT (x) |