From 031a1712e49e5923aca0d080f679b3943194b0eb Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 10 Aug 2000 04:21:28 +0000 Subject: [PATCH] Include kernel-features.h. --- sysdeps/unix/sysv/linux/m68k/chown.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sysdeps/unix/sysv/linux/m68k/chown.c b/sysdeps/unix/sysv/linux/m68k/chown.c index e97c148..1ea7e26 100644 --- a/sysdeps/unix/sysv/linux/m68k/chown.c +++ b/sysdeps/unix/sysv/linux/m68k/chown.c @@ -24,6 +24,7 @@ #include #include +#include "kernel-features.h" extern int __syscall_chown (const char *__unbounded __file, __kernel_uid_t __owner, __kernel_gid_t __group); @@ -42,7 +43,7 @@ extern int __libc_missing_32bit_uids; int __chown (const char *file, uid_t owner, gid_t group) { -#if __ASSUME_32BITUIDS +#if __ASSUME_32BITUIDS > 0 return INLINE_SYSCALL (chown32, 3, CHECK_STRING (file), owner, group); #else # ifdef __NR_chown32 -- 2.7.4