diff options
author | Jakob Kaivo <jkk@ung.org> | 2020-08-15 15:28:16 -0400 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2020-08-15 15:28:16 -0400 |
commit | 6228d597543fa2682374f950355fb31691cf930f (patch) | |
tree | 16fe4f92b6353c6c0f2781e1a92047b81a56524a | |
parent | c758cc47d8cdf1e6a161efb0d9d46fad6bb1e9e4 (diff) |
make static if compiling for C95
-rw-r--r-- | src/wchar/vswscanf.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/wchar/vswscanf.c b/src/wchar/vswscanf.c index 93db847a..0ecd61e9 100644 --- a/src/wchar/vswscanf.c +++ b/src/wchar/vswscanf.c @@ -1,5 +1,9 @@ #include <wchar.h> -#include "../stdio/_stdio.h" +#include "stdio/_stdio.h" + +#if __STDC_VERSION__ < 199901L + static +#endif int vswscanf(const wchar_t * restrict s, const wchar_t * restrict format, va_list arg) { |