summaryrefslogtreecommitdiff
path: root/fs/ext2.c
diff options
context:
space:
mode:
authorMichal Idziorek <m.i@gmx.at>2014-10-22 14:06:04 +0200
committerMichal Idziorek <m.i@gmx.at>2014-10-22 14:06:04 +0200
commit95450710a8b8290a110686d78c2357d3920bcda5 (patch)
tree4e3ef7556289bb1c18bce0c6e73235d497364a4d /fs/ext2.c
parent17d28200533f6a02d08cee2bf5352036bea92762 (diff)
working on filesys and readdir syscall
Diffstat (limited to 'fs/ext2.c')
-rw-r--r--fs/ext2.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/ext2.c b/fs/ext2.c
index 90897e9..bc83f55 100644
--- a/fs/ext2.c
+++ b/fs/ext2.c
@@ -1,8 +1,7 @@
// ext2 minidriver
// based on osdev wiki article: http://wiki.osdev.org/Ext2
-#include <stdint.h>
-#include <stdio.h>
+#include "lib/int/stdint.h"
typedef struct ext2_superblock_struct
{
@@ -97,6 +96,7 @@ typedef struct ext2_inode_struct
+ /*
int main()
{
ext2_superblock super;
@@ -191,6 +191,6 @@ int main()
puts("");
}
-
+*/