forked from Imagelibrary/rtems
* configure.in: Add libc/config.h * libc/Makefile.am: Add INCLUDES += -I. to pickup config.h * libc/.cvsignore: Add config.h and stamp-h * libc/*.c: Add config.h support.
20 lines
281 B
C
20 lines
281 B
C
/*
|
|
* $Id$
|
|
*/
|
|
|
|
/* creat() "system call" */
|
|
|
|
#if HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
/* 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);
|
|
}
|