mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-08 03:36:44 +08:00
9 lines
94 B
C
9 lines
94 B
C
|
#include "f2c.h"
|
||
|
|
||
|
#undef abs
|
||
|
#include <math.h>
|
||
|
double r_sqrt(real *x)
|
||
|
{
|
||
|
return( sqrt(*x) );
|
||
|
}
|