aboutsummaryrefslogtreecommitdiffstats
path: root/runtime/include/math.h
blob: 805cc8e742e7b5300865215f700f908ebbda15eb (plain)
1
2
3
4
5
6
7
#ifndef _COMPCERT_MATH_H
#define _COMPCERT_MATH_H

#define isfinite(__y) (fpclassify((__y)) >= FP_ZERO)

#include_next <math.h>
#endif