aboutsummaryrefslogtreecommitdiff
#include <fcntl.h>

int creat(const char *filename, mode_t mode)
{
	return open(filename, O_CREAT|O_WRONLY|O_TRUNC, mode);
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif