infinityl.c revision 1.1
11.1Skleink/* $NetBSD: infinityl.c,v 1.1 2003/10/25 22:31:20 kleink Exp $ */ 21.1Skleink 31.1Skleink/* 41.1Skleink * IEEE-compatible infinityl.c for little-endian 80-bit format -- public domain. 51.1Skleink * Note that the representation includes 16 bits of tail padding per i386 ABI. 61.1Skleink */ 71.1Skleink 81.1Skleink#include <math.h> 91.1Skleink 101.1Skleinkconst union __long_double_u __infinityl = 111.1Skleink { { 0, 0, 0, 0, 0, 0, 0, 0x80, 0xff, 0x7f, 0, 0 } }; 12