shithub: npe

ref: 25d017440f96bd59227c56a902dc7c0bb3e23c4f
dir: /libnpe/isnormal.c/

View raw version
#include <math.h>
#include "_npe.h"

int
isnormal(double d)
{
	return d == 0 || isNaN(d) || isInf(d, 0);
}