about summary refs log tree commit diff
path: root/sysdeps/generic/uname.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/generic/uname.c')
-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 68335c21f9..aacb5f3df0 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)