diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-07-08 06:18:45 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-07-08 06:18:45 +0000 |
commit | 1a35b7fd42a4960fc8dfca2696ad9b644e3243bd (patch) | |
tree | 0dbfb668b053f1c84457ecdad50029c3d0159528 | |
parent | 9f2bedd02f3c6df26864ede5354fc43e869f0409 (diff) | |
download | glibc-1a35b7fd42a4960fc8dfca2696ad9b644e3243bd.tar.gz glibc-1a35b7fd42a4960fc8dfca2696ad9b644e3243bd.tar.xz glibc-1a35b7fd42a4960fc8dfca2696ad9b644e3243bd.zip |
Update.
* libio/freopen.c: Include <stdlib.h> for free declaration. * libio/freopen64.c: Likewise.
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | libio/freopen.c | 1 | ||||
-rw-r--r-- | libio/freopen64.c | 1 |
3 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index 583d12f048..fe32a894dd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2001-07-07 Ulrich Drepper <drepper@redhat.com> + * libio/freopen.c: Include <stdlib.h> for free declaration. + * libio/freopen64.c: Likewise. + * sysdeps/alpha/fpu/libm-test-ulps: Add deltas for tanh(-0.7). 2001-07-06 Jakub Jelinek <jakub@redhat.com> diff --git a/libio/freopen.c b/libio/freopen.c index 2e142b0802..584b6e033d 100644 --- a/libio/freopen.c +++ b/libio/freopen.c @@ -27,6 +27,7 @@ #include "libioP.h" #include "stdio.h" +#include <stdlib.h> #include <shlib-compat.h> #include <fd_to_filename.h> diff --git a/libio/freopen64.c b/libio/freopen64.c index 6ac62e44e3..28cfb79df7 100644 --- a/libio/freopen64.c +++ b/libio/freopen64.c @@ -27,6 +27,7 @@ #include "libioP.h" #include "stdio.h" +#include <stdlib.h> #include <fd_to_filename.h> |