NSMBW-Decomp
A decompilation of New Super Mario Bros. Wii
Loading...
Searching...
No Matches
math.h
Go to the documentation of this file.
1#pragma once
3
4#ifdef __cplusplus
5extern "C" {
6#endif
7
10
12double fmod(double x, double denom);
13
15inline double fabs(double x) {
16 return __fabs(x);
17}
18
20inline float fabsf(float x) {
21 return __fabs(x);
22}
23
25
26#ifdef __cplusplus
27}
28#endif
double fmod(double x, double denom)
Returns the floating-point remainder of numer/denom (rounded towards zero).
double fabs(double x)
Returns the absolute value of x.
Definition math.h:15
float fabsf(float x)
Returns the absolute value of x.
Definition math.h:20