shithub: npe

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