diff options
Diffstat (limited to 'userland/libc/stdio/stderr.c')
-rw-r--r-- | userland/libc/stdio/stderr.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/userland/libc/stdio/stderr.c b/userland/libc/stdio/stderr.c deleted file mode 100644 index 76597e2..0000000 --- a/userland/libc/stdio/stderr.c +++ /dev/null @@ -1,11 +0,0 @@ -#include <stdio.h> -#include <unistd.h> - -FILE __stderr_FILE = { - .write = write_fd, - .read = read_fd, - .is_eof = 0, - .has_error = 0, - .cookie = NULL, - .fd = 2, -}; |