diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-07-15 21:56:03 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-07-15 21:56:03 +0000 |
commit | e993e9cc1c6b0dbe4c3d12ab7fe45678e3e39e27 (patch) | |
tree | 74eec6af203019205df8d7abc0794e9a90512f4f /sysdeps/unix | |
parent | 9aae19cd9aaf10e7d99c56f9d7d820c5b792faeb (diff) | |
download | glibc-e993e9cc1c6b0dbe4c3d12ab7fe45678e3e39e27.tar glibc-e993e9cc1c6b0dbe4c3d12ab7fe45678e3e39e27.tar.gz glibc-e993e9cc1c6b0dbe4c3d12ab7fe45678e3e39e27.tar.bz2 glibc-e993e9cc1c6b0dbe4c3d12ab7fe45678e3e39e27.zip |
Update.
2000-07-15 Jakub Jelinek <jakub@redhat.com>
* gconv_open (__gconv_open): Initialize whole __gconv_trans_data
structure.
2000-07-13 Jakub Jelinek <jakub@redhat.com>
* sysdeps/posix/sysconf.c: Undef __sysconf before weak_alias.
* sysdeps/unix/bsd/getpt.c: Undef __getpt before weak_alias.
Diffstat (limited to 'sysdeps/unix')
-rw-r--r-- | sysdeps/unix/bsd/getpt.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sysdeps/unix/bsd/getpt.c b/sysdeps/unix/bsd/getpt.c index d8070972a5..42615ba159 100644 --- a/sysdeps/unix/bsd/getpt.c +++ b/sysdeps/unix/bsd/getpt.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1998, 1999 Free Software Foundation, Inc. +/* Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Zack Weinberg <zack@rabi.phys.columbia.edu>, 1998. @@ -74,4 +74,6 @@ __getpt (void) __set_errno (ENOENT); return -1; } + +#undef __getpt weak_alias (__getpt, getpt) |