summaryrefslogtreecommitdiff
path: root/interface/fs.h
diff options
context:
space:
mode:
authorMiguel <m.i@gmx.at>2018-10-14 23:08:07 +0200
committerMiguel <m.i@gmx.at>2018-10-14 23:08:07 +0200
commitf35d2124c36f8d39a953b76620e081b79c2faffd (patch)
tree216e3a75841acc69672bf5640cc2f86e93e1ba37 /interface/fs.h
parent2a6690e9fd53a02613796764248006e06ac482d6 (diff)
moved newlib specific stuff and similar into ./interface/
Diffstat (limited to 'interface/fs.h')
-rw-r--r--interface/fs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/interface/fs.h b/interface/fs.h
index a6168ae..25d4253 100644
--- a/interface/fs.h
+++ b/interface/fs.h
@@ -13,7 +13,6 @@ enum FS_FILE_TYPE{
FS_FILE_TYPE_FILE = 2
};
-/*
typedef struct fs_dirent_struct
{
uint32_t mount; //mount identifier
@@ -22,8 +21,8 @@ typedef struct fs_dirent_struct
char name[255];
}fs_dirent;
-*/
+/*
typedef struct fs_dirent_struct
{
uint32_t inode;
@@ -32,5 +31,6 @@ typedef struct fs_dirent_struct
uint8_t type;
char name[256];
}fs_dirent;
+*/
#endif