summaryrefslogtreecommitdiff
path: root/src/user/lib/stdio/file.h
diff options
context:
space:
mode:
authordzwdz2022-08-26 14:16:16 +0200
committerdzwdz2022-08-26 14:16:16 +0200
commite6584db26da34572fb13aa236e16e19f71c8e976 (patch)
tree055c528765e986bc8ed6706cec84289e50b46ed6 /src/user/lib/stdio/file.h
parentffdf0e8d93f8e98ed9d5a8270feb2a19eb9659e3 (diff)
user/libc: prepare for OpenED port
Diffstat (limited to 'src/user/lib/stdio/file.h')
-rw-r--r--src/user/lib/stdio/file.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/user/lib/stdio/file.h b/src/user/lib/stdio/file.h
new file mode 100644
index 0000000..604b070
--- /dev/null
+++ b/src/user/lib/stdio/file.h
@@ -0,0 +1,10 @@
+#pragma once
+#include <stdbool.h>
+
+struct _LIBC_FILE {
+ int fd;
+ long pos;
+ bool eof;
+ bool error;
+ int extflags;
+};