make type of st_dev explicitly dev_t in x86_64 stat.h
[musl] / src / math / finite.c
1 #define _GNU_SOURCE
2 #include <math.h>
3
4 int finite(double x)
5 {
6         return isfinite(x);
7 }