[FS, USER] Debug filesystem, fs syscalls

This commit is contained in:
2017-03-13 13:37:39 +01:00
parent 2fe66e4f80
commit fd782365b7
12 changed files with 204 additions and 39 deletions

View File

@@ -7,6 +7,11 @@ int main(int argc, char **argv)
(void) argc;
(void) argv;
FILE *fp = fopen("/dev/debug", "w");
fprintf(fp, "Hello, filesystem!\n");
for(;;);
return 0;
}