home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD1.bin / gnu / src / amiga / libnix-0.7-src.lha / libnix-0.7 / sources / math / stdio / isinf.c next >
Encoding:
Text File  |  1994-12-18  |  128 b   |  6 lines

  1. int isinf(double a)
  2. {
  3.   unsigned long *b=(unsigned long *)&a;
  4.   return (b[0]&0x7ff00000)==0x7ff00000&&!(b[0]&0xfffff)&&!b[1];
  5. }
  6.