mirror of
https://github.com/opnsense/src.git
synced 2026-04-20 21:59:20 -04:00
9 lines
113 B
C
9 lines
113 B
C
#include "f2c.h"
|
|
|
|
#undef abs
|
|
#include <math.h>
|
|
double
|
|
r_atn2 (real * x, real * y)
|
|
{
|
|
return (atan2 (*x, *y));
|
|
}
|