7 lines
114 B
C
7 lines
114 B
C
|
#include <fcntl.h>
|
||
|
|
||
|
int creat(const char *path, mode_t mode)
|
||
|
{
|
||
|
open(path, O_CREAT | O_TRUNC | O_WRONLY, mode);
|
||
|
}
|