shithub: npe

ref: 1a54d1f0b13124bfbc60a4ecf3ed1f15869c8e3d
dir: /libnpe/isinf.c/

View raw version
#include <math.h>
#include "_npe.h"

int
isinf(double d)
{
	if(isInf(d, 0) == 0)
		return 0;

	return isInf(d, -1) ? -1 : 1;
}