00001 
00002 
00003 
00004 
00005 
00006 
00007 
00008 
00009 
00010 
00011 
00012 
00013 #if defined(LIBM_SCCS) && !defined(lint)
00014 static char rcsid[] = "$NetBSD: s_finite.c,v 1.8 1995/05/10 20:47:17 jtc Exp $";
00015 #endif
00016 
00017 
00018 
00019 
00020 
00021 
00022 #include "math.h"
00023 #include "mathP.h"
00024 
00025 #ifdef __STDC__
00026     int finite(double x)
00027 #else
00028     int finite(x)
00029     double x;
00030 #endif
00031 {
00032     int32_t hx;
00033     GET_HIGH_WORD(hx,x);
00034     return (int)((u_int32_t)((hx&0x7fffffff)-0x7ff00000)>>31);
00035 }