diff options
Diffstat (limited to 'Userland/Libraries/LibC/stdio.cpp')
-rw-r--r-- | Userland/Libraries/LibC/stdio.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Userland/Libraries/LibC/stdio.cpp b/Userland/Libraries/LibC/stdio.cpp index bc9091cd27..47bbc2e9b7 100644 --- a/Userland/Libraries/LibC/stdio.cpp +++ b/Userland/Libraries/LibC/stdio.cpp @@ -1067,6 +1067,13 @@ FILE* fdopen(int fd, const char* mode) return FILE::create(fd, flags); } +// https://pubs.opengroup.org/onlinepubs/9699919799/functions/fmemopen.html +FILE* fmemopen(void*, size_t, const char*) +{ + // FIXME: Implement me :^) + TODO(); +} + static inline bool is_default_stream(FILE* stream) { return stream == stdin || stream == stdout || stream == stderr; |