- Timestamp:
- Jul 2, 2005, 2:15:59 AM (20 years ago)
- File:
-
- 1 edited
-
trunk/src/emx/src/lib/bsd/gen/isinf.c (modified) (4 diffs, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/src/lib/bsd/gen/isinf.c
-
Property cvs2svn:cvs-rev
changed from
1.2to1.3
r2138 r2139 45 45 46 46 u.d = d; 47 48 49 50 47 51 return (u.bits.exp == 2047 && u.bits.manl == 0 && u.bits.manh == 0); 52 48 53 } 49 54 … … 54 59 55 60 u.f = f; 61 62 63 64 56 65 return (u.bits.exp == 255 && u.bits.man == 0); 66 57 67 } 58 68 … … 64 74 u.e = e; 65 75 mask_nbit_l(u); 76 77 78 79 80 81 82 83 66 84 #ifndef __alpha__ 67 85 return (u.bits.exp == 32767 && u.bits.manl == 0 && u.bits.manh == 0); … … 69 87 return (u.bits.exp == 2047 && u.bits.manl == 0 && u.bits.manh == 0); 70 88 #endif 89 71 90 } -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.
