source: rtems/c/src/lib/libc/creat.c @ 32f19fb3

4.104.114.84.95
Last change on this file since 32f19fb3 was ddaa60f, checked in by Joel Sherrill <joel.sherrill@…>, on 10/06/99 at 21:08:14

New file.

  • Property mode set to 100644
File size: 218 bytes
Line 
1/* creat() "system call" */
2
3/* This is needed by f2c and therefore the SPEC benchmarks.  */
4
5#include <fcntl.h>
6
7int
8creat (const char *path, mode_t mode)
9{
10  return open (path, O_WRONLY | O_CREAT | O_TRUNC, mode);
11}
Note: See TracBrowser for help on using the repository browser.