Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 3756 → Rev 3757

/trunk/uspace/lib/libc/include/stdio.h
89,7 → 89,22
extern int ferror(FILE *);
extern void clearerr(FILE *);
 
extern int fgetc(FILE *);;
extern int fputc(int, FILE *);
extern int fputs(const char *, FILE *);
 
#define getc fgetc
#define putc fputc
 
extern int fseek(FILE *, long, int);
 
#ifndef SEEK_SET
#define SEEK_SET 0
#define SEEK_CUR 1
#define SEEK_END 2
#endif
 
#endif
 
/** @}
*/