1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2026-01-18 04:20:59 +00:00
serenity/LibC/sys/stat.h

11 lines
152 B
C

#pragma once
#include <sys/cdefs.h>
#include <sys/types.h>
__BEGIN_DECLS
mode_t umask(mode_t);
int chmod(const char* pathname, mode_t);
__END_DECLS