mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-26 21:19:53 +08:00
9 lines
89 B
C
9 lines
89 B
C
|
#include "f2c.h"
|
||
|
|
||
|
double d_abs(doublereal *x)
|
||
|
{
|
||
|
if(*x >= 0)
|
||
|
return(*x);
|
||
|
return(- *x);
|
||
|
}
|