Twilight Princess
Decompilation of The Legend of Zelda: Twilight Princess
Loading...
Searching...
No Matches
cmath.h
Go to the documentation of this file.
1#ifndef STD_CMATH_H_
2#define STD_CMATH_H_
3
4
5namespace std {
6template<typename T>
7inline double fabs(T x) {
8 return ::fabs(x);
9}
10
11inline float fabs(float num) {
12 return ::fabsf(num);
13}
14
15inline float fabsf(float num) {
16 return ::fabsf(num);
17}
18
19inline float sqrt(float x) {
20 return ::sqrtf(x);
21}
22
23inline float abs(float x) {
24 return ::fabsf(x);
25}
26} // namespace std
27
28#endif
double x double x
Definition e_atan2.c:58
static const double T[]
Definition k_tan.c:106
Definition d_a_e_wb.cpp:12
double fabs(T x)
Definition cmath.h:7
float abs(float x)
Definition cmath.h:23
float sqrt(float x)
Definition cmath.h:19
void fabsf(f32)
Definition cmath.h:15