2 * Written by J.T. Conklin <jtc@netbsd.org>.
6 #if defined(LIBM_SCCS) && !defined(lint)
7 static char rcsid
[] = "$NetBSD: s_isinff.c,v 1.3 1995/05/11 23:20:21 jtc Exp $";
11 * isinff(x) returns 1 if x is inf, -1 if x is -inf, else 0;
16 #include "math_private.h"
26 return ~(t
>> 31) & (ix
>> 30);
28 weak_alias (__isinff
, isinff
)