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