mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-21 22:44:04 +08:00
10 lines
196 B
C
10 lines
196 B
C
|
#include <machine/syscall.h>
|
||
|
#include "internal_syscall.h"
|
||
|
|
||
|
/* Open a file. */
|
||
|
int
|
||
|
_open(const char *name, int flags, int mode)
|
||
|
{
|
||
|
return syscall_errno (SYS_open, name, flags, mode, 0, 0, 0);
|
||
|
}
|