diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-11-06 13:40:23 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-11-06 13:47:56 +0100 |
commit | b2d23f83ab04ee1e7ca5d16ec32416939077bc4c (patch) | |
tree | 4b4bd7b7a70d693394dac0f26ae75cb7c446bd6e /LibC/sys/stat.h | |
parent | 77fe8e8363140d600c4e9cfa4b5f6212a2c71234 (diff) | |
download | serenity-b2d23f83ab04ee1e7ca5d16ec32416939077bc4c.zip |
Add umask().
Diffstat (limited to 'LibC/sys/stat.h')
-rw-r--r-- | LibC/sys/stat.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/LibC/sys/stat.h b/LibC/sys/stat.h index e69de29bb2..902e63268d 100644 --- a/LibC/sys/stat.h +++ b/LibC/sys/stat.h @@ -0,0 +1,10 @@ +#pragma once + +#include <sys/cdefs.h> +#include <sys/types.h> + +__BEGIN_DECLS + +mode_t umask(mode_t); + +__END_DECLS |