Add umask().

This commit is contained in:
Andreas Kling 2018-11-06 13:40:23 +01:00
commit b2d23f83ab
Notes: sideshowbarker 2024-07-19 18:33:05 +09:00
6 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,10 @@
#pragma once
#include <sys/cdefs.h>
#include <sys/types.h>
__BEGIN_DECLS
mode_t umask(mode_t);
__END_DECLS