diff options
author | dzwdz | 2022-08-03 13:20:50 +0200 |
---|---|---|
committer | dzwdz | 2022-08-03 13:20:50 +0200 |
commit | 4c8caaec8e856686581feb0a84089cdad07a0018 (patch) | |
tree | 6ad2ddca823d8eb069c63c653875919223faeafe /src/user/lib/include | |
parent | bdae1cb0bbd3dd7589a458d54cb85b4bc6d7556c (diff) |
user/libc: "!files"
similar to /dev/{stdin,stdout,stderr} on Linux, except handled by the
libc instead of the kernel
because that's the simplest way
Diffstat (limited to 'src/user/lib/include')
-rw-r--r-- | src/user/lib/include/stdio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/user/lib/include/stdio.h b/src/user/lib/include/stdio.h index fd4a676..74c5230 100644 --- a/src/user/lib/include/stdio.h +++ b/src/user/lib/include/stdio.h @@ -25,7 +25,7 @@ extern FILE *const stdin, *const stdout, *const stderr; FILE *fopen(const char *path, const char *mode); FILE *freopen(const char *path, const char *mode, FILE *); FILE *fdopen(int fd, const char *mode); -FILE *file_clone(const FILE *); +FILE *file_clone(const FILE *, const char *mode); int fclose(FILE *); int fflush(FILE *f); |