mirror of
https://github.com/opnsense/src.git
synced 2026-02-14 08:13:38 -05:00
13 lines
178 B
C
13 lines
178 B
C
#include "f2c.h"
|
|
|
|
#ifdef KR_headers
|
|
double sqrt();
|
|
double d_sqrt(x) doublereal *x;
|
|
#else
|
|
#undef abs
|
|
#include "math.h"
|
|
double d_sqrt(doublereal *x)
|
|
#endif
|
|
{
|
|
return( sqrt(*x) );
|
|
}
|