comparison packages/language/c/libm/current/src/misc/infconst.c @ 126:518f42066aba ecos-sw-2000-09-19

Merge from eCos master repository on 2000-09-19-06:25:26-BST
author jlarmour
date Tue, 19 Sep 2000 05:53:51 +0000
parents 6bd9d475ed4b
children e0c0827131d1
comparison
equal deleted inserted replaced
125:b4407dc7f59d 126:518f42066aba
60 60
61 // GLOBALS 61 // GLOBALS
62 62
63 #if (CYG_BYTEORDER == CYG_MSBFIRST) // Big endian 63 #if (CYG_BYTEORDER == CYG_MSBFIRST) // Big endian
64 64
65 const Cyg_libm_ieee_double_shape_type cyg_libm_infinity[] = { { {0x7ff00000, 0} } }; 65 const Cyg_libm_ieee_double_shape_type cyg_libm_infinity = { {0x7ff00000, 0} };
66 66
67 #else // Little endian 67 #else // Little endian
68 68
69 const Cyg_libm_ieee_double_shape_type cyg_libm_infinity[] = { { {0, 0x7ff00000} } }; 69 const Cyg_libm_ieee_double_shape_type cyg_libm_infinity = { {0, 0x7ff00000} };
70 70
71 #endif 71 #endif
72 72
73 #endif // ifdef CYGPKG_LIBM 73 #endif // ifdef CYGPKG_LIBM
74 74