CREAT(2) MachTen Programmer’s Manual CREAT(2)

NAME
creat - create a new file

SYNOPSIS
#include <fcntl.h>

int
creat(char *path, mode_t mode)

DESCRIPTION
This interface is made obsolete by: open(2).

Creat() is the same as:

open(path, O_CREAT | O_TRUNC | O_WRONLY, mode);

SEE ALSO
open(2)

HISTORY
The creat function call appeared in Version 6 AT&T UNIX.

4th Berkeley Distribution June 2, 1993 1