summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libstdio/fseeko.c
diff options
context:
space:
mode:
Diffstat (limited to 'mdk-stage1/dietlibc/libstdio/fseeko.c')
-rw-r--r--mdk-stage1/dietlibc/libstdio/fseeko.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/mdk-stage1/dietlibc/libstdio/fseeko.c b/mdk-stage1/dietlibc/libstdio/fseeko.c
new file mode 100644
index 000000000..6459a6ff4
--- /dev/null
+++ b/mdk-stage1/dietlibc/libstdio/fseeko.c
@@ -0,0 +1,10 @@
+#include <dietstdio.h>
+#include <unistd.h>
+
+int fseeko(FILE *stream, off_t offset, int whence) {
+ fflush(stream);
+ stream->bm=0; stream->bs=0;
+ stream->flags&=~(ERRORINDICATOR|EOFINDICATOR);
+ stream->ungotten=0;
+ return lseek(stream->fd,offset,whence)!=-1?0:-1;
+}