shithub: npe

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