From c9ec058657f9f8b3fd39a16f1a9e993b4a1e982e Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Tue, 28 May 2024 15:50:03 -0400 Subject: abstract out "forced" implementations of functions from future specifications --- src/stdlib/free.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/stdlib/free.c') diff --git a/src/stdlib/free.c b/src/stdlib/free.c index 47c04dd0..3662adb3 100644 --- a/src/stdlib/free.c +++ b/src/stdlib/free.c @@ -9,7 +9,7 @@ void free(void * ptr) SIGNAL_SAFE(0); if (ptr) { - __jkmalloc(NULL, NULL, 0, ptr, 0, 0, 0); + __jkmalloc(NULL, NULL, 0, ptr, 0, 0, 0, NULL); } } -- cgit v1.2.1