diff options
Diffstat (limited to 'newlib/libc/sys/sysmec/stat.c')
-rw-r--r-- | newlib/libc/sys/sysmec/stat.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/newlib/libc/sys/sysmec/stat.c b/newlib/libc/sys/sysmec/stat.c deleted file mode 100644 index 11bbe8e..0000000 --- a/newlib/libc/sys/sysmec/stat.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 (); - -#define TRAP0(f, p1, p2, p3) __trap0(f, (p1), (p2), (p3)) - -int -_stat (const char *path, struct stat *st) - -{ - return TRAP0 (SYS_stat, path, st, 0); -} |