diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-11-22 14:04:29 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-11-22 14:04:29 +0000 |
commit | 7ce331c01ce6eb7b3f5c715a38a24359da9c6ee2 (patch) | |
tree | 3a7e8476e868ae15f4da1b7ce26b2db6f434468c /libm/float/j0tst.c | |
parent | c117dd5fb183afb1a4790a6f6110d88704be6bf8 (diff) |
Totally rework the math library, this time based on the MacOs X
math library (which is itself based on the math lib from FreeBSD).
-Erik
Diffstat (limited to 'libm/float/j0tst.c')
-rw-r--r-- | libm/float/j0tst.c | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/libm/float/j0tst.c b/libm/float/j0tst.c deleted file mode 100644 index e5a5607d7..000000000 --- a/libm/float/j0tst.c +++ /dev/null @@ -1,43 +0,0 @@ -float z[20] = { -2.4048254489898681641, -5.5200781822204589844, -8.6537275314331054687, -11.791533470153808594, -14.930917739868164062, -18.071063995361328125, -21.211637496948242188, -24.352472305297851563, -27.493478775024414062, -30.634607315063476562, -33.775821685791015625, -36.9170989990234375, -40.0584259033203125, -43.19979095458984375, -46.3411865234375, -49.482608795166015625, -52.624050140380859375, -55.76551055908203125, -58.906982421875, -62.04846954345703125, -}; - -/* #if ANSIC */ -#if __STDC__ -float j0f(float); -#else -float j0f(); -#endif - -int main() -{ -float y; -int i; - -for (i = 0; i< 20; i++) - { - y = j0f(z[i]); - printf("%.9e\n", y); - } -exit(0); -} - |