Sign in
gnu
/
gcc.git
/
54c256f3bb31a704fcee68af4f8f0eeaf8a0763e
/
.
/
libf2c
/
libF77
/
r_cos.c
blob: 5bda158cee950b498817689d257464b36bbad4d2 [
file
]
#include
"f2c.h"
#ifdef
KR_headers
double
cos
();
double
r_cos
(
x
)
real
*
x
;
#else
#undef
abs
#include
<math.h>
double
r_cos
(
real
*
x
)
#endif
{
return
(
cos
(*
x
)
);
}