typo
[unix-history] / usr / src / lib / libc / compat-43 / creat.2
CommitLineData
96117dfd
KB
1.\" Copyright (c) 1989 The Regents of the University of California.
2.\" All rights reserved.
7d589817 3.\"
91cff1e1 4.\" %sccs.include.redist.man%
96117dfd 5.\"
91cff1e1 6.\" @(#)creat.2 6.8 (Berkeley) %G%
7d589817 7.\"
6fa8e3b5 8.TH CREAT 2 ""
7d589817
KM
9.UC 4
10.SH NAME
11creat \- create a new file
12.SH SYNOPSIS
13.nf
96117dfd
KB
14.ft B
15creat(path, mode)
16char *path;
17mode_t mode;
18.ft R
7d589817
KM
19.fi
20.SH DESCRIPTION
d4bad45b 21.B "This interface is made obsolete by open(2).
a854dd01 22.PP
7d589817 23.I Creat
96117dfd
KB
24is the same as:
25.sp
26.RS
27open(path, O_WRONLY | O_CREAT | O_WRONLY, mode);
28.RE
7d589817 29.SH "SEE ALSO"
96117dfd 30open(2)