shithub: npe

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