From 674a6373b66550928f25110140e84635d9f1ce64 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Mon, 20 Jan 2025 18:17:56 -0800 Subject: [PATCH] Avoid compiler warning --- runtime.c | 1 + 1 file changed, 1 insertion(+) diff --git a/runtime.c b/runtime.c index 2a29de26..016b4574 100644 --- a/runtime.c +++ b/runtime.c @@ -30,6 +30,7 @@ static uint32_t Cyc_utf8_decode(uint32_t * state, uint32_t * codep, static int Cyc_utf8_count_code_points_and_bytes(uint8_t * s, char_type * codepoint, int *cpts, int *bytes); +void gc_start_major_collection(gc_thread_data * thd); static void Cyc_cancel_thread(gc_thread_data * thd); /* Error checking section - type mismatch, num args, etc */