summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/setrlimit64.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/sysdeps/linux/common/setrlimit64.c')
-rw-r--r--libc/sysdeps/linux/common/setrlimit64.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/setrlimit64.c b/libc/sysdeps/linux/common/setrlimit64.c
index b0d84de53..9b338f094 100644
--- a/libc/sysdeps/linux/common/setrlimit64.c
+++ b/libc/sysdeps/linux/common/setrlimit64.c
@@ -33,8 +33,11 @@
#include <sys/types.h>
#include <sys/resource.h>
+#include <bits/wordsize.h>
-#if defined __UCLIBC_HAS_LFS__
+/* the regular setrlimit will work just fine for 64bit users */
+
+#if defined __UCLIBC_HAS_LFS__ && __WORDSIZE == 32
libc_hidden_proto(setrlimit)