diff options
Diffstat (limited to 'src/user/lib/include/bits/file.h')
-rw-r--r-- | src/user/lib/include/bits/file.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/user/lib/include/bits/file.h b/src/user/lib/include/bits/file.h index e50d402..63a31c4 100644 --- a/src/user/lib/include/bits/file.h +++ b/src/user/lib/include/bits/file.h @@ -1,10 +1,2 @@ #pragma once -#include <stdbool.h> -// TODO make opaque -struct FILE { - int fd; - int pos; - bool eof; - bool error; -}; -typedef struct FILE FILE; +typedef struct _LIBC_FILE FILE; |