OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [newlib-1.18.0/] [newlib-1.18.0-or32-1.0rc1/] [newlib/] [libc/] [machine/] [spu/] [creat.c] - Diff between revs 207 and 345

Only display areas with differences | Details | Blame | View Log

Rev 207 Rev 345
/* creat() "system call" */
/* creat() "system call" */
 
 
/* copied from libc/posix/creat.c */
/* copied from libc/posix/creat.c */
 
 
/* This is needed by f2c and therefore the SPEC benchmarks.  */
/* This is needed by f2c and therefore the SPEC benchmarks.  */
 
 
#include <fcntl.h>
#include <fcntl.h>
 
 
int
int
_DEFUN(creat, (path, mode),
_DEFUN(creat, (path, mode),
       const char *path _AND
       const char *path _AND
       mode_t mode)
       mode_t mode)
{
{
  return open (path, O_WRONLY | O_CREAT | O_TRUNC, mode);
  return open (path, O_WRONLY | O_CREAT | O_TRUNC, mode);
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.