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/aligned_alloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/stdlib/aligned_alloc.c') diff --git a/src/stdlib/aligned_alloc.c b/src/stdlib/aligned_alloc.c index f699014b..6fa28e9f 100644 --- a/src/stdlib/aligned_alloc.c +++ b/src/stdlib/aligned_alloc.c @@ -5,7 +5,7 @@ void *aligned_alloc(size_t alignment, size_t size) { SIGNAL_SAFE(0); - return __jkmalloc(NULL, NULL, 0, NULL, alignment, size, 0); + return __jkmalloc(NULL, NULL, 0, NULL, alignment, size, 0, NULL); } /* -- cgit v1.2.1