software/libbase: add fseek+ftell decls
authorSebastien Bourdeauducq <sebastien@milkymist.org>
Sun, 3 Jun 2012 19:32:36 +0000 (21:32 +0200)
committerSebastien Bourdeauducq <sebastien@milkymist.org>
Sun, 3 Jun 2012 19:32:36 +0000 (21:32 +0200)
software/include/base/stdio.h

index 58c908ec467f874d71af9a523195227448b45c2b..91f59d7adee5a5e13aa35c0cbcdf1467c5428637 100644 (file)
@@ -31,6 +31,18 @@ typedef int dev_t;
 #define EOF -1
 #endif
 
+#ifndef SEEK_SET
+#define SEEK_SET       0
+#endif
+
+#ifndef SEEK_CUR
+#define SEEK_CUR       1
+#endif
+
+#ifndef SEEK_END
+#define SEEK_END       2
+#endif
+
 typedef int FILE;
 
 extern FILE *stdin;
@@ -51,4 +63,8 @@ int ferror(FILE *stream);
 int feof(FILE *stream);
 int fclose(FILE *fp);
 
+int fseek(FILE *stream, long offset, int whence);
+long ftell(FILE *stream);
+
+
 #endif /* __STDIO_H */