Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
emscripten-core
GitHub Repository: emscripten-core/emscripten
Path: blob/main/system/include/compat/math.h
6171 views
1
#ifndef _COMPAT_MATH_H_
2
#define _COMPAT_MATH_H_
3
4
#ifndef isinff
5
#define isinff isinf
6
#endif
7
8
#ifndef isnanf
9
#define isnanf isnan
10
#endif
11
12
#include_next <math.h>
13
14
#endif /* _COMPAT_MATH_H_ */
15
16