From 000a7c045c98c30aac86db93f8c9c978e5ca8c59 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Tue, 30 Jan 2024 14:25:31 -0500 Subject: update standards and safety checks --- src/stdio/vfprintf_s.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'src/stdio/vfprintf_s.c') diff --git a/src/stdio/vfprintf_s.c b/src/stdio/vfprintf_s.c index 9de51739..941b03c0 100644 --- a/src/stdio/vfprintf_s.c +++ b/src/stdio/vfprintf_s.c @@ -1,12 +1,11 @@ -#if 0 - #include -#include "__stdio.h" #include +#include "_stdio.h" /** write formatted output to a file stream **/ int vfprintf_s(FILE * restrict stream, const char * restrict format, va_list arg) { + SIGNAL_SAFE(0); struct io_options opt = { .fnname = __func__, .stream = stream, @@ -33,6 +32,3 @@ responsible for this. /* CEXT1(201112) */ - - -#endif -- cgit v1.2.1