9 lines
79 B
C
9 lines
79 B
C
#ifndef NOFLOAT
|
|
double
|
|
_absd(i)
|
|
double i;
|
|
{
|
|
return i >= 0 ? i : -i;
|
|
}
|
|
#endif
|