aboutsummaryrefslogtreecommitdiff
path: root/system/include/compat/math.h
blob: 089cf66b0155fd7f12370c6cc01b369cca3e05cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef  _COMPAT_MATH_H_
#define  _COMPAT_MATH_H_

#ifndef isinff
  #define isinff isinf
#endif

#ifndef isnanf
  #define isnanf isnan
#endif

#include_next <math.h>

#endif /* _COMPAT_MATH_H_ */