diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-03-22 00:36:57 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-03-22 00:36:57 +0000 |
commit | 101edd3f3187e38542b6dc380bb9134203c065f3 (patch) | |
tree | cf1e36f4233edd36e37aa05a7b1997945f4da90b /elf/dl-runtime.c | |
parent | bafb8ee92fbb5937357d53b8b9275c99e9da1cfe (diff) | |
download | glibc-101edd3f3187e38542b6dc380bb9134203c065f3.tar.gz glibc-101edd3f3187e38542b6dc380bb9134203c065f3.tar.xz glibc-101edd3f3187e38542b6dc380bb9134203c065f3.zip |
Update.
* nscd/connections.c (nscd_run): Pretty print. * elf/dl-runtime.c: Include stdlib.h for alloca prototype.
Diffstat (limited to 'elf/dl-runtime.c')
-rw-r--r-- | elf/dl-runtime.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/elf/dl-runtime.c b/elf/dl-runtime.c index 8e8728c8ff..23f7587b53 100644 --- a/elf/dl-runtime.c +++ b/elf/dl-runtime.c @@ -1,5 +1,5 @@ /* On-demand PLT fixup for shared objects. - Copyright (C) 1995, 1996, 1997, 1998, 1999 Free Software Foundation, Inc. + Copyright (C) 1995-1999, 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 @@ -18,6 +18,7 @@ Boston, MA 02111-1307, USA. */ #include <alloca.h> +#include <stdlib.h> #include <unistd.h> #include <elf/ldsodefs.h> #include "dynamic-link.h" |