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/__undefined.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src/__undefined.c') diff --git a/src/__undefined.c b/src/__undefined.c index 40026dac..6f619393 100644 --- a/src/__undefined.c +++ b/src/__undefined.c @@ -3,10 +3,7 @@ #include #include "_safety.h" -#if __STDC_VERSION__ < 199901L -static _Noreturn void _Exit(int); -#include "stdlib/_Exit.c" -#endif +#include "_forced/_Exit.h" _Noreturn void __undefined(const char *fmt, ...) { -- cgit v1.2.1