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/_forced/_Exit.h | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 src/_forced/_Exit.h (limited to 'src/_forced/_Exit.h') diff --git a/src/_forced/_Exit.h b/src/_forced/_Exit.h new file mode 100644 index 00000000..0ffc1ba3 --- /dev/null +++ b/src/_forced/_Exit.h @@ -0,0 +1,4 @@ +#if __STDC_VERSION__ < 199901L +static _Noreturn void _Exit(int); +#include "stdlib/_Exit.c" +#endif -- cgit v1.2.1