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