UNIX 7th Ed. -
/
usr
/
src
/
libF77
/
d_abs.c
Functions
d_abs
X
1
:
double
d_abs
(x)
2
:
double
*x;
3
:
{
4
:
if
(*x >=
0
)
5
:
return
(*x);
6
:
return
(- *x);
7
:
}
Defined functions
d_abs
defined in line
1
;
never used
Last modified: 1979-01-10
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 302