home *** CD-ROM | disk | FTP | other *** search
- /*
- * sine and cosine from math.c
- */
-
- /*
- * sin - circular sine
- *
- */
-
- #include "sincos.h"
-
- double sin(x)
- double x;
- {
- elems68k(&x, FOSINX);
- return(x);
- }
-
- /*
- * cos - circular cosine
- *
- */
-
- double cos(x)
- double x;
- {
- elems68k(&x, FOCOSX);
- return(x);
- }
-