diff options
author | Roland McGrath <roland@gnu.org> | 1996-03-05 21:41:30 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-03-05 21:41:30 +0000 |
commit | f7eac6eb504f4baf13dbb4d26717942df050ebe6 (patch) | |
tree | 95ff129c06c7f6f246a5e2bfa489ba6382659d19 /math/machine | |
parent | 1521668f2afae1dc2ef5d7ffaeb84353b36874dd (diff) | |
download | glibc-f7eac6eb504f4baf13dbb4d26717942df050ebe6.tar glibc-f7eac6eb504f4baf13dbb4d26717942df050ebe6.tar.gz glibc-f7eac6eb504f4baf13dbb4d26717942df050ebe6.tar.bz2 glibc-f7eac6eb504f4baf13dbb4d26717942df050ebe6.zip |
Mon Mar 4 20:54:40 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* Makeconfig ($(common-objpfx)config.make): Depend on config.h.in.
Mon Mar 4 17:35:09 1996 Roland McGrath <roland@charlie-brown.gnu.ai.mit.edu>
* hurd/catch-signal.c (hurd_safe_memmove): New function.
(hurd_safe_copyin, hurd_safe_copyout): New functions.
* hurd/hurd/sigpreempt.h: Declare them.
Sun Mar 3 08:43:44 1996 Roland McGrath <roland@charlie-brown.gnu.ai.mit.edu>
Replace math code with fdlibm from Sun as modified for netbsd by
JT Conklin and Ian Taylor, including x86 FPU support.
* sysdeps/libm-ieee754, sysdeps/libm-i387: New directories.
* math/math_private.h: New file.
* sysdeps/i386/fpu/Implies: New file.
* sysdeps/ieee754/Implies: New file.
* math/machine/asm.h, math/machine/endian.h: New files.
* math/Makefile, math/math.h: Rewritten.
* mathcalls.h, math/mathcalls.h: New file, broken out of math.h.
* math/finite.c: File removed.
* sysdeps/generic/Makefile [$(subdir)=math]: Frobnication removed.
* math/test-math.c: Include errno.h and string.h.
* sysdeps/unix/bsd/dirstream.h: File removed.
* sysdeps/unix/bsd/readdir.c: File removed.
Diffstat (limited to 'math/machine')
-rw-r--r-- | math/machine/asm.h | 10 | ||||
-rw-r--r-- | math/machine/endian.h | 4 |
2 files changed, 14 insertions, 0 deletions
diff --git a/math/machine/asm.h b/math/machine/asm.h new file mode 100644 index 0000000000..548e248556 --- /dev/null +++ b/math/machine/asm.h @@ -0,0 +1,10 @@ +/* The libm assembly code wants to include <machine/asm.h> to define the + ENTRY macro. We define assembly-related macros in sysdep.h and + asm-syntax.h. */ + +#include <sysdep.h> +#include <asm-syntax.h> + +/* The libm assembly code uses this macro for RCSid strings. + We don't put RCSid strings into object files. */ +#define RCSID(id) /* ignore them */ diff --git a/math/machine/endian.h b/math/machine/endian.h new file mode 100644 index 0000000000..88804564bf --- /dev/null +++ b/math/machine/endian.h @@ -0,0 +1,4 @@ +/* math_private.h wants to include <machine/endian.h>; we provide this + file so it can, leaving math_private.h unmodified from the original. */ + +#include <endian.h> |