mirror of
https://github.com/opnsense/src.git
synced 2026-02-14 16:23:25 -05:00
9 lines
102 B
C
9 lines
102 B
C
#include "f2c.h"
|
|
|
|
#undef abs
|
|
#include <math.h>
|
|
double
|
|
d_tan (doublereal * x)
|
|
{
|
|
return (tan (*x));
|
|
}
|