/* * 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_fstat64 __NR_fstat64 static inline _syscall2(int, __syscall_fstat64, int, fd, struct stat64 *, buf); strong_alias(__syscall_fstat64,fstat64) libc_hidden_proto(fstat64) libc_hidden_def(fstat64) #endif