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