aboutsummaryrefslogtreecommitdiff
path: root/sysdeps
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-06-28 23:50:37 +0000
committerUlrich Drepper <drepper@redhat.com>2000-06-28 23:50:37 +0000
commitaa1b098472059ca29ac9f63439ca8f14e4d625bc (patch)
tree772e786d865fb5511493bca5c4ca820879c79a13 /sysdeps
parent07c35131ad1a9c6ebb1b073b9540eee55d850f89 (diff)
downloadglibc-aa1b098472059ca29ac9f63439ca8f14e4d625bc.tar
glibc-aa1b098472059ca29ac9f63439ca8f14e4d625bc.tar.gz
glibc-aa1b098472059ca29ac9f63439ca8f14e4d625bc.tar.bz2
glibc-aa1b098472059ca29ac9f63439ca8f14e4d625bc.zip
Update.
2000-06-28 Jes Sorensen <jes@linuxcare.com> * sysdeps/unix/sysv/linux/ia64/bits/elfclass.h: Deleted. Hash table entries are 32 bit on the ia64 (as specified by the ABI), not 64 bit as on the Alpha. * shlib-versions: Bump ia64 soname to ld-linux-ia64.so.2 to mark change of objects to use 32 bit hash table indices (see above). 2000-06-28 Jes Sorensen <jes@linuxcare.com> * sysdeps/ieee754/dbl-64/e_exp.c: Add include stdlib.h to get prototype for abs().
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/ieee754/dbl-64/e_exp.c3
-rw-r--r--sysdeps/unix/sysv/linux/ia64/bits/elfclass.h14
2 files changed, 2 insertions, 15 deletions
diff --git a/sysdeps/ieee754/dbl-64/e_exp.c b/sysdeps/ieee754/dbl-64/e_exp.c
index ee0b22f6ae..6486cc3cfe 100644
--- a/sysdeps/ieee754/dbl-64/e_exp.c
+++ b/sysdeps/ieee754/dbl-64/e_exp.c
@@ -1,5 +1,5 @@
/* Double-precision floating point e^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>
@@ -55,6 +55,7 @@
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
+#include <stdlib.h>
#include <float.h>
#include <ieee754.h>
#include <math.h>
diff --git a/sysdeps/unix/sysv/linux/ia64/bits/elfclass.h b/sysdeps/unix/sysv/linux/ia64/bits/elfclass.h
deleted file mode 100644
index de0c694e0c..0000000000
--- a/sysdeps/unix/sysv/linux/ia64/bits/elfclass.h
+++ /dev/null
@@ -1,14 +0,0 @@
-/* This file specifies the native word size of the machine, which indicates
- the ELF file class used for executables and shared objects on this
- machine. */
-
-#ifndef _LINK_H
-# error "Never use <bits/elfclass.h> directly; include <link.h> instead."
-#endif
-
-#include <bits/wordsize.h>
-
-#define __ELF_NATIVE_CLASS __WORDSIZE
-
-/* Linux/ia64, like the Alpha has the .hash section with 64 bit entries. */
-typedef uint64_t Elf_Symndx;