Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/include/stdio.h

    rb942a66 r23c8acd9  
    3636#define LIBC_STDIO_H_
    3737
    38 #include <sys/types.h>
    3938#include <stdarg.h>
    4039#include <str.h>
     
    140139extern size_t fwrite(const void *, size_t, size_t, FILE *);
    141140
    142 extern int fseek(FILE *, off64_t, int);
     141extern int fseek(FILE *, long, int);
    143142extern void rewind(FILE *);
    144 extern off64_t ftell(FILE *);
     143extern long ftell(FILE *);
    145144extern int feof(FILE *);
    146145extern int fileno(FILE *);
Note: See TracChangeset for help on using the changeset viewer.