ref: 54eba9d8f30fdb122ba9d3903fdc9aa4d1bb046a
parent: ffd10fbbcc040cb91eed9d657c0d31a31b909394
author: Paul Brossier <piem@piem.org>
date: Mon Oct 3 16:57:46 EDT 2016
src/aubio_priv.h: add ATAN alias
--- a/src/aubio_priv.h
+++ b/src/aubio_priv.h
@@ -220,6 +220,7 @@
#define LOG logf
#define FLOOR floorf
#define CEIL ceilf
+#define ATAN atanf
#define ATAN2 atan2f
#else
#define EXP exp
@@ -232,6 +233,7 @@
#define LOG log
#define FLOOR floor
#define CEIL ceil
+#define ATAN atan
#define ATAN2 atan2
#endif
#define ROUND(x) FLOOR(x+.5)