From ebed9ca6f8dac9ecce341015111ab8bc2925fdcf Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Sun, 3 Jun 2012 21:32:36 +0200 Subject: [PATCH] software/libbase: add fseek+ftell decls --- software/include/base/stdio.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/software/include/base/stdio.h b/software/include/base/stdio.h index 58c908ec4..91f59d7ad 100644 --- a/software/include/base/stdio.h +++ b/software/include/base/stdio.h @@ -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 */