mirror of
https://github.com/RGBCube/serenity
synced 2026-01-18 04:20:59 +00:00
11 lines
152 B
C
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
|