mirror of
https://github.com/cahirwpz/libnix.git
synced 2026-09-11 19:26:17 +00:00
7 lines
122 B
C
7 lines
122 B
C
#include <fcntl.h>
|
|
|
|
int creat(const char *path, mode_t mode)
|
|
{
|
|
return open(path, O_CREAT | O_TRUNC | O_WRONLY, mode);
|
|
}
|