diff options
Diffstat (limited to 'src/stdio/putw.c')
| -rw-r--r-- | src/stdio/putw.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/stdio/putw.c b/src/stdio/putw.c index 19ea92b7..fb18c445 100644 --- a/src/stdio/putw.c +++ b/src/stdio/putw.c @@ -1,16 +1,14 @@ -#if 0 - #include <stdio.h> +#include "_stdio.h" # define _XOPEN_LEGACY 500 int putw(int w, FILE *stream) { + SIGNAL_SAFE(0); + (void)w; (void)stream; } /* XOPEN(4,600) */ - - -#endif |
