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/fsetpos.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'src/stdio/fsetpos.c') 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 +#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 -- cgit v1.2.1