shithub: npe

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