/* * Syscalls for uClibc * * Copyright (C) 2000-2006 Erik Andersen * * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. */ /* Extracted from ../common/syscalls.c by Erik Andersen * Adapted to FR-V by Alexandre Oliva */ #define _GNU_SOURCE #define _LARGEFILE64_SOURCE #include #undef __OPTIMIZE__ /* We absolutely do _NOT_ want interfaces silently * * * renamed under us or very bad things will happen... */ #ifdef __USE_FILE_OFFSET64 # undef __USE_FILE_OFFSET64 #endif #include #include #include #include #include #define _SYS_STAT_H #include #if defined __UCLIBC_HAS_LFS__ #define __NR___syscall_stat64 __NR_stat64 static inline _syscall2(int, __syscall_stat64, const char *, file_name, struct stat64 *, buf); libc_hidden_proto(stat64) strong_alias(__syscall_stat64,stat64) libc_hidden_def(stat64) #endif