aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/generic
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/generic')
-rw-r--r--sysdeps/generic/uname.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sysdeps/generic/uname.c b/sysdeps/generic/uname.c
index 68335c2..aacb5f3 100644
--- a/sysdeps/generic/uname.c
+++ b/sysdeps/generic/uname.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 1992, 1996, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 1992, 1996, 1997, 2000 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -26,7 +26,7 @@
/* Put information about the system in NAME. */
int
-uname (name)
+__uname (name)
struct utsname *name;
{
int save;
@@ -61,3 +61,4 @@ uname (name)
return 0;
}
+weak_alias (__uname, uname)