ack/lang/basic/lib/atn.c
2018-06-24 00:35:51 +02:00

5 lines
78 B
C

#include <math.h>
#include "lib.h"
double _atn(double x) { return atan(x); }