1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 03:57:43 +00:00

Add umask().

This commit is contained in:
Andreas Kling 2018-11-06 13:40:23 +01:00
parent 77fe8e8363
commit b2d23f83ab
6 changed files with 23 additions and 0 deletions

View file

@ -23,6 +23,7 @@ LIBC_OBJS = \
times.o \
termcap.o \
setjmp.o \
stat.o \
entry.o
OBJS = $(AK_OBJS) $(LIBC_OBJS)

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