summaryrefslogtreecommitdiff
path: root/lib/libc
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2001-03-05 07:28:35 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2001-03-05 07:28:35 +0000
commit61b5a59b2724b3c0cc6a22c90766283666f198db (patch)
tree46322a5cead0ff04999cecf6f892a7cc98031faf /lib/libc
parentc4c5594de874da67bc08d28c4c2a78b59332a070 (diff)
Notes
Diffstat (limited to 'lib/libc')
-rw-r--r--lib/libc/compat-43/creat.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/libc/compat-43/creat.c b/lib/libc/compat-43/creat.c
index 42759e7d9389..870589cbfa12 100644
--- a/lib/libc/compat-43/creat.c
+++ b/lib/libc/compat-43/creat.c
@@ -40,13 +40,7 @@ static char sccsid[] = "@(#)creat.c 8.1 (Berkeley) 6/2/93";
#include <fcntl.h>
int
-#if __STDC__
__creat(const char *path, mode_t mode)
-#else
-__creat(path, mode)
- char *path;
- mode_t mode;
-#endif
{
return(_open(path, O_WRONLY|O_CREAT|O_TRUNC, mode));
}