summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/modify_ldt.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/sysdeps/linux/common/modify_ldt.c')
-rw-r--r--libc/sysdeps/linux/common/modify_ldt.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/modify_ldt.c b/libc/sysdeps/linux/common/modify_ldt.c
index f01d0b1ff..610b88f29 100644
--- a/libc/sysdeps/linux/common/modify_ldt.c
+++ b/libc/sysdeps/linux/common/modify_ldt.c
@@ -8,6 +8,8 @@
*/
#include "syscalls.h"
-_syscall3(int, modify_ldt, int, func, void *, ptr, unsigned long, bytecount);
+#ifdef __NR_modify_ldt
+_syscall3(int, modify_ldt, int, func, void *, ptr, unsigned long, bytecount);
weak_alias(modify_ldt, __modify_ldt);
+#endif