From 537494b031b3df4d4861fd83c90302d8d2d9d821 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Thu, 19 Jan 2006 10:02:23 +0000 Subject: move a bunch of arch-specific checks out of common files and into an arch specific header file to make porting/updates a lot easier --- libc/sysdeps/linux/common/truncate64.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libc/sysdeps/linux/common/truncate64.c') diff --git a/libc/sysdeps/linux/common/truncate64.c b/libc/sysdeps/linux/common/truncate64.c index 59324fd3e..e227900c5 100644 --- a/libc/sysdeps/linux/common/truncate64.c +++ b/libc/sysdeps/linux/common/truncate64.c @@ -32,7 +32,7 @@ _syscall2(int, truncate64, const char *, path, __off64_t, length); #ifndef INLINE_SYSCALL #define INLINE_SYSCALL(name, nr, args...) __syscall_truncate64 (args) #define __NR___syscall_truncate64 __NR_truncate64 -#if defined(__powerpc__) || defined(__mips__) +#if defined(__UCLIBC_TRUNCATE64_HAS_4_ARGS__) static inline _syscall4(int, __syscall_truncate64, const char *, path, uint32_t, pad, unsigned long, high_length, unsigned long, low_length); #else @@ -47,7 +47,7 @@ int truncate64 (const char * path, __off64_t length) { uint32_t low = length & 0xffffffff; uint32_t high = length >> 32; -#if defined(__powerpc__) || defined(__mips__) +#if defined(__UCLIBC_TRUNCATE64_HAS_4_ARGS__) return INLINE_SYSCALL(truncate64, 4, path, 0, __LONG_LONG_PAIR (high, low)); #else -- cgit v1.2.3