blob: 6a68ec8ba10d99610c0a42df577b8a65d4561a66 [file] [log] [blame]
#include <fcntl.h>
int creat(const char* path, mode_t mode) { return open(path, O_CREAT | O_WRONLY | O_TRUNC, mode); }