diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-11-18 14:57:41 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-11-18 15:02:16 +0100 |
commit | de4604ac95261fe95f5921b0d16ee65fb501332a (patch) | |
tree | 16bf9be7e4d94862179c99d5cdcee29a0b7ca744 /LibC/sys/stat.h | |
parent | 303577df16cf990d1c0cb2c83cd8a954258809ba (diff) | |
download | serenity-de4604ac95261fe95f5921b0d16ee65fb501332a.zip |
Finally hook up the mkdir code to a syscall.
Added a /bin/mkdir that makes directories. How very neat :^)
There are various limitations because of missing functionality.
Diffstat (limited to 'LibC/sys/stat.h')
-rw-r--r-- | LibC/sys/stat.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/LibC/sys/stat.h b/LibC/sys/stat.h index 0cba204b11..e5fc40e5e5 100644 --- a/LibC/sys/stat.h +++ b/LibC/sys/stat.h @@ -7,5 +7,6 @@ __BEGIN_DECLS mode_t umask(mode_t); int chmod(const char* pathname, mode_t); +int mkdir(const char* pathname, mode_t); __END_DECLS |