summaryrefslogtreecommitdiff
path: root/userland/libc/stdio/stdin.c
diff options
context:
space:
mode:
Diffstat (limited to 'userland/libc/stdio/stdin.c')
-rw-r--r--userland/libc/stdio/stdin.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/userland/libc/stdio/stdin.c b/userland/libc/stdio/stdin.c
index 2e1e50f..e84ea7e 100644
--- a/userland/libc/stdio/stdin.c
+++ b/userland/libc/stdio/stdin.c
@@ -71,13 +71,3 @@ int seek_fd(FILE *stream, long offset, int whence) {
// FIXME: Error checking
return 0;
}
-
-FILE __stdin_FILE = {
- .write = write_fd,
- .read = read_fd,
- .seek = NULL,
- .is_eof = 0,
- .has_error = 0,
- .cookie = NULL,
- .fd = 0,
-};