diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-07-25 23:21:20 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-07-25 23:21:20 +0000 |
commit | 722c33bbb6d2984cf537f0d3669617fba041fb50 (patch) | |
tree | 2a7f596c5e9979123c3833a1684a2d3516c067f9 /sysdeps/generic/glob.c | |
parent | 788e8e7c221825916e6ab11f0079d4c5ede8a057 (diff) | |
download | glibc-722c33bbb6d2984cf537f0d3669617fba041fb50.tar glibc-722c33bbb6d2984cf537f0d3669617fba041fb50.tar.gz glibc-722c33bbb6d2984cf537f0d3669617fba041fb50.tar.bz2 glibc-722c33bbb6d2984cf537f0d3669617fba041fb50.zip |
Update.
* string/bits/string2.h: Fix aliasing problems.
* sysdeps/i386/i486/bits/string.h: Likewise.
* sysdeps/i386/bits/string.h: Likewise.
1998-12-28 Geoff Keating <geoffk@ozemail.com.au>
* sysdeps/powerpc/dl-machine.c: Handle shared library profiling.
* elf/rtld.c (dl_main): Don't call malloc() between
re-relocating the dynamic linker and running the application's crt0.
1999-07-21 Paul D. Smith <psmith@gnu.org>
* sysdeps/generic/glob.c: Move getlogin{,_r} prototypes below
glob.h to get __P() macro.
* posix/fnmatch.c (internal_fnmatch): Use K&R definition syntax,
not ANSI.
(__strchrnul): This won't exist outside GLIBC, so create one.
1999-07-25 Jakub Jelinek <jj@ultra.linux.cz>
* sysdeps/unix/sysv/linux/sparc/bits/types.h: Always define __qaddr_t.
__ino64_t should be 32bit unsigned type on sparc32.
Define __off64_t to __quad_t instead of __int64_t.
Make __pic_pid_t unsigned on sparc32.
1999-07-25 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* localedata/tst-rpmatch.sh: Use "&" instead of "§" to avoid a bug
in bash 2.03.
1999-07-25 Ulrich Drepper <drepper@cygnus.com>
Diffstat (limited to 'sysdeps/generic/glob.c')
-rw-r--r-- | sysdeps/generic/glob.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sysdeps/generic/glob.c b/sysdeps/generic/glob.c index 9b134c5a0d..1ab5d8b629 100644 --- a/sysdeps/generic/glob.c +++ b/sysdeps/generic/glob.c @@ -155,12 +155,6 @@ extern void abort (), exit (); #endif /* Standard headers. */ -#ifdef HAVE_GETLOGIN_R -extern int getlogin_r __P ((char *, size_t)); -#else -extern char *getlogin __P ((void)); -#endif - #ifndef ANSI_STRING # ifndef bzero @@ -286,6 +280,12 @@ extern char *alloca (); # undef GLOB_PERIOD #endif #include <glob.h> + +#ifdef HAVE_GETLOGIN_R +extern int getlogin_r __P ((char *, size_t)); +#else +extern char *getlogin __P ((void)); +#endif static #if __GNUC__ - 0 >= 2 |