mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-14 10:09:48 +00:00
14 lines
162 B
C
14 lines
162 B
C
#include "f2c.h"
|
|
|
|
#ifdef KR_headers
|
|
double tan();
|
|
double r_tan(x) real *x;
|
|
#else
|
|
#undef abs
|
|
#include <math.h>
|
|
double r_tan(real *x)
|
|
#endif
|
|
{
|
|
return( tan(*x) );
|
|
}
|