mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Forgot to add fputs(3) to <stdio.h>.
This commit is contained in:
parent
065ceae509
commit
9f7175fbc8
1 changed files with 1 additions and 1 deletions
|
@ -82,6 +82,7 @@ extern char* fgets(char* restrict s, int n, FILE* restrict stream);
|
|||
extern FILE* fopen(const char* restrict filename, const char* restrict mode);
|
||||
extern int fprintf(FILE* restrict stream, const char* restrict format, ...);
|
||||
extern int fputc(int c, FILE* stream);
|
||||
extern int fputs(const char* restrict s, FILE* restrict stream);
|
||||
extern size_t fread(void* restrict ptr, size_t size, size_t nitems, FILE* restrict stream);
|
||||
extern int fseek(FILE* stream, long offset, int whence);
|
||||
extern int fseeko(FILE* stream, off_t offset, int whence);
|
||||
|
@ -119,7 +120,6 @@ extern FILE* popen(const char* command, const char* mode);
|
|||
extern FILE* tmpfile(void);
|
||||
extern int dprintf(int fildes, const char* restrict format, ...);
|
||||
extern int fgetpos(FILE* restrict stream, fpos_t* restrict pos);
|
||||
extern int fputs(const char* restrict s, FILE* restrict stream);
|
||||
extern int fscanf(FILE* restrict stream, const char* restrict format, ... );
|
||||
extern int fsetpos(FILE* stream, const fpos_t* pos);
|
||||
extern int ftrylockfile(FILE* file);
|
||||
|
|
Loading…
Add table
Reference in a new issue