diff options
Diffstat (limited to 'libc/sysdeps/linux/common/getrlimit64.c')
-rw-r--r-- | libc/sysdeps/linux/common/getrlimit64.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/common/getrlimit64.c b/libc/sysdeps/linux/common/getrlimit64.c index 6f670c001..d134287d5 100644 --- a/libc/sysdeps/linux/common/getrlimit64.c +++ b/libc/sysdeps/linux/common/getrlimit64.c @@ -33,10 +33,13 @@ #include <sys/types.h> #include <sys/resource.h> +#include <bits/wordsize.h> -libc_hidden_proto(getrlimit) +/* the regular getrlimit will work just fine for 64bit users */ + +#if defined __UCLIBC_HAS_LFS__ && __WORDSIZE == 32 -#if defined __UCLIBC_HAS_LFS__ +libc_hidden_proto(getrlimit) /* Put the soft and hard limits for RESOURCE in *RLIMITS. Returns 0 if successful, -1 if not (and sets errno). */ |