summaryrefslogtreecommitdiff
path: root/fs/file.h
diff options
context:
space:
mode:
authorMichal Idziorek <m.i@gmx.at>2015-05-23 21:39:42 +0200
committerMichal Idziorek <m.i@gmx.at>2015-05-23 21:39:42 +0200
commitdadd5202a3ccfd8c03fb9eb60e6a15b0fb987672 (patch)
tree3c4b818f90a4862f82ed2e03ceaaf9d7723d293d /fs/file.h
parent6c8be13c682a0aef520b2d3efeb67dcf078b1889 (diff)
filesystem stuff and experimenting with userspace tasks
Diffstat (limited to 'fs/file.h')
-rw-r--r--fs/file.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/fs/file.h b/fs/file.h
index f8445a2..7734393 100644
--- a/fs/file.h
+++ b/fs/file.h
@@ -3,6 +3,8 @@
#include <stdint.h>
+#define FILE_MAX_FILES 100;
+
typedef struct
{
int(* seek)(int offset, int whence);
@@ -17,4 +19,8 @@ typedef struct
}file;
+
+
+
+
#endif