summaryrefslogblamecommitdiffstats
path: root/c/src/lib/libc/creat.c
blob: ed7a872d4a9f7c4f98256905bf34e8bee70826f5 (plain) (tree)
1
2
3
4
5
6
7
8
9
10



        

                           



                   








                                                               
/*
 *  $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);
}