1 // =================================
 2 // Copyright (c) 2021 Seppo Laakko
 3 // Distributed under the MIT license
 4 // =================================
 5 
 6 #ifndef CMAJOR_RT_MATH_INCLUDED
 7 #define CMAJOR_RT_MATH_INCLUDED
 8 #include <cmajor/rt/RtApi.hpp>
 9 #include <stdint.h>
10 
11 extern "C" double RtPow(double x, int32_t exponent);
12 extern "C" double Pow(double x, double y);
13 extern "C" double RtSqrt(double x);
14 extern "C" double RtPi();
15 extern "C" double RtCos(double angleRad);
16 extern "C" double RtSin(double angleRad);
17 extern "C" double RtArcCos(double x);
18 extern "C" double RtArcSin(double x);
19 extern "C" double RtAtan2(double y, double x);
20 extern "C" double RtEpsilon();
21 
22 #endif // CMAJOR_RT_MATH_INCLUDED