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