Files
rtems/cpukit/libcsupport/src/creat.c
2009-03-10 07:12:50 +00:00

22 lines
307 B
C

/*
* $Id$
*/
/* creat() "system call" */
#if HAVE_CONFIG_H
#include "config.h"
#endif
#ifndef HAVE_CREAT
/* This is needed by f2c and therefore the SPEC benchmarks. */
#include <fcntl.h>
int
creat (const char *path, mode_t mode)
{
return open (path, O_WRONLY | O_CREAT | O_TRUNC, mode);
}
#endif