Fix incorrect parameter types for ftell and fgets.
This commit is contained in:
parent
a9cb635df2
commit
4f2da6c6e4
@ -224,7 +224,7 @@ int ferror __P((FILE *));
|
||||
int fflush __P((FILE *));
|
||||
int fgetc __P((FILE *));
|
||||
int fgetpos __P((FILE *, fpos_t *));
|
||||
char *fgets __P((char *, size_t, FILE *));
|
||||
char *fgets __P((char *, int, FILE *));
|
||||
FILE *fopen __P((const char *, const char *));
|
||||
int fprintf __P((FILE *, const char *, ...));
|
||||
int fputc __P((int, FILE *));
|
||||
@ -234,7 +234,7 @@ FILE *freopen __P((const char *, const char *, FILE *));
|
||||
int fscanf __P((FILE *, const char *, ...));
|
||||
int fseek __P((FILE *, long, int));
|
||||
int fsetpos __P((FILE *, const fpos_t *));
|
||||
long ftell __P((const FILE *));
|
||||
long ftell __P((FILE *));
|
||||
size_t fwrite __P((const void *, size_t, size_t, FILE *));
|
||||
int getc __P((FILE *));
|
||||
int getchar __P((void));
|
||||
|
Loading…
Reference in New Issue
Block a user