summaryrefslogtreecommitdiff
path: root/fs/ext2.c
diff options
context:
space:
mode:
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("");
}
-
+*/