[comp.sources.wanted] need isnan and isinf

eggert@twinsun.com (Paul Eggert) (05/04/91)

int isnan(x) double x; { return x != x; }
int isinf(x) double x; { return x  &&  x == 4*x; }