home *** CD-ROM | disk | FTP | other *** search
- / log10.s (emx+gcc) -- Copyright (c) 1991-1993 by Eberhard Mattes
-
- #include <libm.h>
-
- .globl _log10
-
- .text
-
- .align 2, 0x90
-
- / double log10 (double x)
-
- #define x 4(%esp)
-
- _log10:
- fldl2t
- fdivrl __const_ONE
- fldl x / x
- fyl2x
- _xam
- j_nan 1f
- j_inf 1f
- ret
-
- .align 2, 0x90
- 1: SETERRNO($EDOM)
- ret
-