childs -> children.
[AROS.git] / workbench / libs / mathieeesingtrans / ieeespsincos.c
blobbd9d6975834946dcdec15f1b34100426df28ae4c
1 /*
2 Copyright © 1995-2003, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include "mathieeesingtrans_intern.h"
8 /*
9 FUNCTION
10 Calculate the cosine and the sine of the given IEEE single
11 precision number where y represents an angle in radians. The
12 function returns the sine of that number as a result and puts
13 the cosine of that number into *z which must represent
14 a valid pointer to a IEEE single precision number.
16 RESULT
17 *z - IEEE single precision floating point number
18 direct result - IEEE single precision floating point number
21 NOTES
23 EXAMPLE
25 BUGS
27 SEE ALSO
29 INTERNALS
31 HISTORY
34 AROS_LH2(float, IEEESPSincos,
35 AROS_LHA(float *, z, A0),
36 AROS_LHA(float, y, D0),
37 struct Library *, MathIeeeSingTransBase, 9, MathIeeeSingTrans
40 AROS_LIBFUNC_INIT
42 *z = IEEESPCos(y);
43 return IEEESPSin(y);
45 AROS_LIBFUNC_EXIT