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/wchar/fwscanf.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src/wchar/fwscanf.c') diff --git a/src/wchar/fwscanf.c b/src/wchar/fwscanf.c index b691ef53..3f160df6 100644 --- a/src/wchar/fwscanf.c +++ b/src/wchar/fwscanf.c @@ -4,10 +4,7 @@ #include #include -#if __STDC_VERSION__ < 199901L -#define vfwscanf __vfwscanf -#include "vfwscanf.c" -#endif +#include "_forced/vfwscanf.h" int fwscanf(FILE * restrict stream, const wchar_t * restrict format, ...) { -- cgit v1.2.1