* sysdeps/m68k/fpu/bits/mathinline.h: Define __ieee754_exp10 as

inline.
	* sysdeps/m68k/fpu/e_exp10.c: New file.
	* sysdeps/m68k/fpu/e_exp10f.c: New file.
	* sysdeps/m68k/fpu/e_exp10l.c: New file.
This commit is contained in:
Andreas Schwab 1998-06-10 05:27:41 +00:00
parent 2cd493384a
commit c21b35ecda
4 changed files with 7 additions and 0 deletions

View File

@ -125,6 +125,7 @@ __inline_mathop(__ieee754_cosh, cosh)
__inline_mathop(__ieee754_sinh, sinh)
__inline_mathop(__ieee754_exp, etox)
__inline_mathop(__ieee754_exp2, twotox)
__inline_mathop(__ieee754_exp10, tentox)
__inline_mathop(__ieee754_log10, log10)
__inline_mathop(__ieee754_log, logn)
__inline_mathop(__ieee754_sqrt, sqrt)

View File

@ -0,0 +1,2 @@
#define FUNC __ieee754_exp10
#include <e_acos.c>

View File

@ -0,0 +1,2 @@
#define FUNC __ieee754_exp10f
#include <e_acosf.c>

View File

@ -0,0 +1,2 @@
#define FUNC __ieee754_exp10l
#include <e_acosl.c>