mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-19 20:09:48 +08:00
9 lines
98 B
C
9 lines
98 B
C
|
#include "f2c.h"
|
||
|
|
||
|
#undef abs
|
||
|
#include <math.h>
|
||
|
double d_tan(doublereal *x)
|
||
|
{
|
||
|
return( tan(*x) );
|
||
|
}
|