about summary refs log tree commit diff
path: root/src/misc
diff options
context:
space:
mode:
Diffstat (limited to 'src/misc')
-rw-r--r--src/misc/getauxval.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/misc/getauxval.c b/src/misc/getauxval.c
index b846c80f..57f21eed 100644
--- a/src/misc/getauxval.c
+++ b/src/misc/getauxval.c
@@ -2,7 +2,7 @@
 #include <errno.h>
 #include "libc.h"
 
-unsigned long getauxval(unsigned long item)
+unsigned long __getauxval(unsigned long item)
 {
 	size_t *auxv = libc.auxv;
 	if (item == AT_SECURE) return libc.secure;
@@ -11,3 +11,5 @@ unsigned long getauxval(unsigned long item)
 	errno = ENOENT;
 	return 0;
 }
+
+weak_alias(__getauxval, getauxval);