Changes in uspace/lib/c/include/stdio.h [23c8acd9:b942a66] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/stdio.h
r23c8acd9 rb942a66 36 36 #define LIBC_STDIO_H_ 37 37 38 #include <sys/types.h> 38 39 #include <stdarg.h> 39 40 #include <str.h> … … 139 140 extern size_t fwrite(const void *, size_t, size_t, FILE *); 140 141 141 extern int fseek(FILE *, long, int);142 extern int fseek(FILE *, off64_t, int); 142 143 extern void rewind(FILE *); 143 extern longftell(FILE *);144 extern off64_t ftell(FILE *); 144 145 extern int feof(FILE *); 145 146 extern int fileno(FILE *);
Note:
See TracChangeset
for help on using the changeset viewer.