diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-06-29 19:33:05 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-06-29 19:33:05 +0000 |
commit | a5707dad25fcc5093f9cc220226b142fae471718 (patch) | |
tree | 79e77e2376db710bf935386e584f6107e207cbe0 /sysdeps/ieee754/flt-32 | |
parent | 5ab0176021b51b2815ec44cc42ec8b82c6d6d0f2 (diff) | |
download | glibc-a5707dad25fcc5093f9cc220226b142fae471718.tar.gz glibc-a5707dad25fcc5093f9cc220226b142fae471718.tar.xz glibc-a5707dad25fcc5093f9cc220226b142fae471718.zip |
Update.
2000-06-29 Ulrich Drepper <drepper@redhat.com> * stdio-common/printf_fp.c (__printf_fp): Don't clobber pointer which we later need to calling free(). Patch by Matt Wilson <msw@redhat.com>. 2000-06-27 David Mosberger-Tang <davidm@hpl.hp.com> * sysdeps/unix/sysv/linux/ia64/bits/ipc.h: New file. * sysdeps/unix/sysv/linux/ia64/bits/shm.h: New file. 2000-06-28 Jes Sorensen <jes@linuxcare.com> * sysdeps/ieee754/dbl-64/s_exp2.c: Add include stdlib.h to get prototype for abs(). * sysdeps/ieee754/flt-32/s_exp2f.c: ditto.
Diffstat (limited to 'sysdeps/ieee754/flt-32')
-rw-r--r-- | sysdeps/ieee754/flt-32/s_exp2f.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/ieee754/flt-32/s_exp2f.c b/sysdeps/ieee754/flt-32/s_exp2f.c index 8229885453..4d529ea285 100644 --- a/sysdeps/ieee754/flt-32/s_exp2f.c +++ b/sysdeps/ieee754/flt-32/s_exp2f.c @@ -1,5 +1,5 @@ /* Single-precision floating point 2^x. - Copyright (C) 1997, 1998 Free Software Foundation, Inc. + Copyright (C) 1997, 1998, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Geoffrey Keating <geoffk@ozemail.com.au> @@ -28,6 +28,7 @@ #ifndef _GNU_SOURCE # define _GNU_SOURCE #endif +#include <stdlib.h> #include <float.h> #include <ieee754.h> #include <math.h> |