about summary refs log tree commit diff stats
path: root/lib/quickjs/quickjs.c
diff options
context:
space:
mode:
authorbptato <nincsnevem662@gmail.com>2023-12-28 22:13:56 +0100
committerbptato <nincsnevem662@gmail.com>2023-12-28 22:13:56 +0100
commite2ad05692f575fab2482325a148f1faaac34b23b (patch)
tree05d92dcc0c8f10376d8390917dc561770d55370f /lib/quickjs/quickjs.c
parent6d1fc3e24e2ad340504619be239e283d74c26e77 (diff)
downloadchawan-e2ad05692f575fab2482325a148f1faaac34b23b.tar.gz
quickjs: remove unnecessary forward declaration
was causing conflicts with applying upstream patches
Diffstat (limited to 'lib/quickjs/quickjs.c')
-rw-r--r--lib/quickjs/quickjs.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/quickjs/quickjs.c b/lib/quickjs/quickjs.c
index 258807e4..c9689455 100644
--- a/lib/quickjs/quickjs.c
+++ b/lib/quickjs/quickjs.c
@@ -1276,10 +1276,6 @@ static JSValue JS_InstantiateFunctionListItem2(JSContext *ctx, JSObject *p,
                                                JSAtom atom, void *opaque);
 void JS_SetUncatchableError(JSContext *ctx, JSValueConst val, BOOL flag);
 
-static void mark_children(JSRuntime *rt, JSGCObjectHeader *gp,
-                          JS_MarkFunc *mark_func);
-static void gc_scan_incref_child(JSRuntime *rt, JSGCObjectHeader *p);
-
 static const JSClassExoticMethods js_arguments_exotic_methods;
 static const JSClassExoticMethods js_string_exotic_methods;
 static const JSClassExoticMethods js_proxy_exotic_methods;