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 {
6inline float fabs(float num) {
7 return ::fabsf(num);
8}
9
10inline float fabsf(float num) {
11 return ::fabsf(num);
12}
13
14inline float sqrt(float x) {
15 return ::sqrtf(x);
16}
17
18inline float abs(float x) {
19 return ::fabsf(x);
20}
21} // namespace std
22
23#endif
double x double x
Definition e_atan2.c:58
Definition d_a_e_wb.cpp:12
float fabs(float num)
Definition cmath.h:6
float abs(float x)
Definition cmath.h:18
float sqrt(float x)
Definition cmath.h:14
void fabsf(f32)
Definition cmath.h:10