summaryrefslogtreecommitdiff
path: root/src/stdio/fsetpos.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdio/fsetpos.c')
-rw-r--r--src/stdio/fsetpos.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/stdio/fsetpos.c b/src/stdio/fsetpos.c
index f56aef48..ca6cb806 100644
--- a/src/stdio/fsetpos.c
+++ b/src/stdio/fsetpos.c
@@ -1,11 +1,11 @@
-#if 0
-
#include <stdio.h>
+#include "_stdio.h"
/** set the file position indicator **/
int fsetpos(FILE *stream, const fpos_t *pos)
{
+ SIGNAL_SAFE(0);
(void)stream; (void)pos;
/* TODO */
return 1;
@@ -23,6 +23,3 @@ any characters pushed back with FUNCTION(ungetc).
/*
STDC(1)
*/
-
-
-#endif