1
0
Fork 0
mirror of https://gitlab.com/sortix/sortix.git synced 2023-02-13 20:55:38 -05:00

Refactor kernel VFS.

Note: This is an incompatible ABI change.
This commit is contained in:
Jonas 'Sortie' Termansen 2012-08-08 00:19:44 +02:00
parent 9634a0c3d2
commit 1444683ea8
92 changed files with 4494 additions and 4472 deletions

View file

@ -20,7 +20,10 @@
*******************************************************************************/
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
@ -77,5 +80,8 @@ int main(int /*argc*/, char* /*argv*/[])
// we are running.
setenv("objtype", getenv("cputype"), 0);
// Make sure that we have a /tmp directory.
mkdir("/tmp", 01777);
return runsystem();
}