diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-09-09 07:59:23 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-09-09 07:59:23 +0000 |
commit | fc5f4a97487fffc7f5451d216f278d83a8259efe (patch) | |
tree | 0eb3a6efb5f6edc33aa21687390e3547d179f1b5 /sysdeps/mach | |
parent | d0e1a1221dff0e8e77cd5d39b980267a0ec92bfd (diff) | |
download | glibc-fc5f4a97487fffc7f5451d216f278d83a8259efe.tar glibc-fc5f4a97487fffc7f5451d216f278d83a8259efe.tar.gz glibc-fc5f4a97487fffc7f5451d216f278d83a8259efe.tar.bz2 glibc-fc5f4a97487fffc7f5451d216f278d83a8259efe.zip |
Update.
2000-09-09 Ulrich Drepper <drepper@redhat.com>
* sysdeps/unix/sysv/linux/dl-osinfo.h (DL_SYSDEP_OSCHECK): Use uname
before trying to read /proc.
Patch by Matt Wilson <msw@redhat.com>.
* 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 <drepper@redhat.com>
* posix/getopt.c (_getopt_internal): When long_only is set always
recognize conflicts just like before.
2000-09-08 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
* sysdeps/ia64/Makefile (sysdep-rtld-routines): New variable.
Diffstat (limited to 'sysdeps/mach')
-rw-r--r-- | sysdeps/mach/hurd/uname.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sysdeps/mach/hurd/uname.c b/sysdeps/mach/hurd/uname.c index 37e4b4e57d..316ecf3e6b 100644 --- a/sysdeps/mach/hurd/uname.c +++ b/sysdeps/mach/hurd/uname.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992, 1993, 1994, 1996, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1992,1993,1994,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 @@ -22,7 +22,7 @@ #include <hurd/startup.h> int -uname (struct utsname *uname) +__uname (struct utsname *uname) { error_t err; @@ -43,3 +43,4 @@ uname (struct utsname *uname) return 0; } +weak_alias (__uname, uname) |