summaryrefslogtreecommitdiff
path: root/src/Runtime/global_destructor_chain.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/Runtime/global_destructor_chain.c')
-rw-r--r--src/Runtime/global_destructor_chain.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Runtime/global_destructor_chain.c b/src/Runtime/global_destructor_chain.c
index b96c8f3..1f3790d 100644
--- a/src/Runtime/global_destructor_chain.c
+++ b/src/Runtime/global_destructor_chain.c
@@ -10,7 +10,7 @@ extern void *__register_global_object(void *object, dtor_func *destructor, dtor_
return object;
}
-extern void __destroy_global_chain() {
+void __destroy_global_chain() {
dtor_chain *iter = __global_destructor_chain;
while (__global_destructor_chain != 0) {
iter = __global_destructor_chain;