From fc5f4a97487fffc7f5451d216f278d83a8259efe Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sat, 9 Sep 2000 07:59:23 +0000 Subject: Update. 2000-09-09 Ulrich Drepper * sysdeps/unix/sysv/linux/dl-osinfo.h (DL_SYSDEP_OSCHECK): Use uname before trying to read /proc. Patch by Matt Wilson . * include/sys/utsname.h: Declare __uname. * sysdeps/generic/uname.c: Make uname a weak alias of __uname. * sysdeps/mach/hurd/uname.c: Likewise. * sysdeps/unix/syscalls.list: Likewise. * iconv/gconv_dl.c (do_release_shlib): Rewrite condition for unloading a bit. 2000-09-08 Ulrich Drepper * posix/getopt.c (_getopt_internal): When long_only is set always recognize conflicts just like before. 2000-09-08 Franz Sirl * sysdeps/ia64/Makefile (sysdep-rtld-routines): New variable. --- sysdeps/generic/uname.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'sysdeps/generic') 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) -- cgit v1.1