blob: e5fc40e5e5dd62be9312b0e2d49e4bb94fe3daea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include <sys/cdefs.h>
#include <sys/types.h>
__BEGIN_DECLS
mode_t umask(mode_t);
int chmod(const char* pathname, mode_t);
int mkdir(const char* pathname, mode_t);
__END_DECLS
|