File size: 196 Bytes
00df61d
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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_ */