mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-06 13:09:50 +00:00
10 lines
94 B
C
10 lines
94 B
C
#include "f2c.h"
|
|
|
|
double
|
|
r_abs (real * x)
|
|
{
|
|
if (*x >= 0)
|
|
return (*x);
|
|
return (-*x);
|
|
}
|