URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [newlib-1.18.0/] [newlib/] [libm/] [math/] [w_sincos.c] - Rev 617
Go to most recent revision | Compare with Previous | Blame | View Log
/* sincos -- currently no more efficient than two separate calls to sin and cos. */ #include "fdlibm.h" #include <errno.h> #ifndef _DOUBLE_IS_32BITS #ifdef __STDC__ void sincos(double x, double *sinx, double *cosx) #else void sincos(x, sinx, cosx) double x; double *sinx; double *cosx; #endif { *sinx = sin (x); *cosx = cos (x); } #endif /* defined(_DOUBLE_IS_32BITS) */
Go to most recent revision | Compare with Previous | Blame | View Log