shithub: npe

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