summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/prlimit.c
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2022-02-27 02:40:00 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2022-02-27 02:40:00 +0100
commit118e211269fb4f685f2999157eb4aafc8fdd9423 (patch)
tree82b1f32babe338ba7955c39de8de1ab82d24468d /libc/sysdeps/linux/common/prlimit.c
parentebe16ee2ae0e2e20e2950e5ceae179b98f1e4264 (diff)
guard prlimit, reported by Lance Fredrickson
Diffstat (limited to 'libc/sysdeps/linux/common/prlimit.c')
-rw-r--r--libc/sysdeps/linux/common/prlimit.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/common/prlimit.c b/libc/sysdeps/linux/common/prlimit.c
index cdb64ba0d..f44dc1664 100644
--- a/libc/sysdeps/linux/common/prlimit.c
+++ b/libc/sysdeps/linux/common/prlimit.c
@@ -17,7 +17,9 @@
#include <sys/resource.h>
#include <sysdep.h>
+#include <bits/kernel-features.h>
+#if defined __ASSUME_PRLIMIT64
int
prlimit (__pid_t pid, enum __rlimit_resource resource,
const struct rlimit *new_rlimit, struct rlimit *old_rlimit)
@@ -25,3 +27,4 @@ prlimit (__pid_t pid, enum __rlimit_resource resource,
return INLINE_SYSCALL (prlimit64, 4, pid, resource, new_rlimit,
old_rlimit);
}
+#endif