diff options
Diffstat (limited to 'newlib/libc/sys/sysnecv850/open.c')
-rw-r--r-- | newlib/libc/sys/sysnecv850/open.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/newlib/libc/sys/sysnecv850/open.c b/newlib/libc/sys/sysnecv850/open.c deleted file mode 100644 index 96616e5..0000000 --- a/newlib/libc/sys/sysnecv850/open.c +++ /dev/null @@ -1,17 +0,0 @@ -#include <_ansi.h> -#include <sys/types.h> -#include <sys/stat.h> -#include "sys/syscall.h" - -int errno; - -int __trap0 (int function, int p1, int p2, int p3); - -#define TRAP0(f, p1, p2, p3) __trap0(f, (int)(p1), (int)(p2), (int)(p3)) - -int -_open (const char *path, - int flags) -{ - return TRAP0 (SYS_open, path, flags, 0); -} |