diff options
author | Andreas Schwab <schwab@suse.de> | 1999-06-26 16:43:55 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 1999-06-26 16:43:55 +0000 |
commit | 5da9d1244a543df757854911b09e48129e0b9ede (patch) | |
tree | 9798f313611dde8882d04ab988a215d0540a8f43 /sysdeps/m68k/fpu/s_ccos.c | |
parent | ad5ec55ca3fccbd4147d6a40ac3a2117c6490b2d (diff) | |
download | glibc-5da9d1244a543df757854911b09e48129e0b9ede.tar glibc-5da9d1244a543df757854911b09e48129e0b9ede.tar.gz glibc-5da9d1244a543df757854911b09e48129e0b9ede.tar.bz2 glibc-5da9d1244a543df757854911b09e48129e0b9ede.zip |
* sysdeps/m68k/fpu/bits/mathinline.h: Move all libm internal
definitions...
* sysdeps/m68k/fpu/mathimpl.h: ... here. New file.
* sysdeps/m68k/fpu/e_acos.c: Include "mathimpl.h".
* sysdeps/m68k/fpu/e_atan2.c: Likewise.
* sysdeps/m68k/fpu/e_fmod.c: Likewise.
* sysdeps/m68k/fpu/e_pow.c: Likewise.
* sysdeps/m68k/fpu/e_scalb.c: Likewise.
* sysdeps/m68k/fpu/s_ccos.c: Likewise.
* sysdeps/m68k/fpu/s_ccosh.c: Likewise.
* sysdeps/m68k/fpu/s_cexp.c: Likewise.
* sysdeps/m68k/fpu/s_csin.c: Likewise.
* sysdeps/m68k/fpu/s_csinh.c: Likewise.
* sysdeps/m68k/fpu/s_ilogb.c: Likewise.
* sysdeps/m68k/fpu/s_llrint.c: Likewise.
* sysdeps/m68k/fpu/s_llrintf.c: Likewise.
* sysdeps/m68k/fpu/s_llrintl.c: Likewise.
* sysdeps/m68k/fpu/s_modf.c: Likewise.
Diffstat (limited to 'sysdeps/m68k/fpu/s_ccos.c')
-rw-r--r-- | sysdeps/m68k/fpu/s_ccos.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/m68k/fpu/s_ccos.c b/sysdeps/m68k/fpu/s_ccos.c index fbd5ef5388..6f1232f99a 100644 --- a/sysdeps/m68k/fpu/s_ccos.c +++ b/sysdeps/m68k/fpu/s_ccos.c @@ -1,5 +1,5 @@ /* Complex cosine function. m68k fpu version - Copyright (C) 1997 Free Software Foundation, Inc. + Copyright (C) 1997, 1999 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>. @@ -20,6 +20,7 @@ #include <complex.h> #include <math.h> +#include "mathimpl.h" #ifndef SUFF #define SUFF |