blob: f6a70a44b98fdc966fd7501f435566fe9071fd38 [file] [log] [blame] [raw]
/*
* This file has no copyright assigned and is placed in the Public Domain.
* No warranty is given.
*
* Written by PC GO
*
*/
#include <unistd.h>
#include <fcntl.h>
int creat(const char *file, mode_t mode) {
return open(file, O_CREAT | O_WRONLY | O_TRUNC, mode);
}