summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/uname.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/sysdeps/linux/common/uname.c')
-rw-r--r--libc/sysdeps/linux/common/uname.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/uname.c b/libc/sysdeps/linux/common/uname.c
index b3c93e0af..3d252edc7 100644
--- a/libc/sysdeps/linux/common/uname.c
+++ b/libc/sysdeps/linux/common/uname.c
@@ -9,4 +9,6 @@
#include "syscalls.h"
#include <sys/utsname.h>
-_syscall1(int, uname, struct utsname *, buf);
+#define __NR___uname __NR_uname
+attribute_hidden _syscall1(int, __uname, struct utsname *, buf);
+strong_alias(__uname,uname)