summaryrefslogtreecommitdiff
path: root/src/stdio/vfprintf_s.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdio/vfprintf_s.c')
-rw-r--r--src/stdio/vfprintf_s.c8
1 files changed, 2 insertions, 6 deletions
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 <stdio.h>
-#include "__stdio.h"
#include <stdarg.h>
+#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