forked from Imagelibrary/rtems
22 lines
307 B
C
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
|