shithub: npe

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