shithub: npe

ref: 91f426bd7c4eacd1656ae8da651eb9deb93d5763
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);
}