On Fri, 2005-12-16 at 13:11 +0100, Enrique Garcia Ayuda wrote: > Anybody knows where the is the isnormal function in mono/dis/getc > witch include??
isnormal(3) is defined in <math.h>, which is already included in mono/dis/get.c. However, the FC4 man page states that it's part of C99, so the Solaris 8 compiler might not support this function. If this is the case you'll have to grab an updated compiler, such as GCC, and use that to build. > what is the return of the version in Solaris 8 Sparc32 true or False I don't understand this question. isnormal(3) checks to see that a floating point number is normal -- i.e. it's not NAN, infinite, zero, too small... As such the return value of isnormal(3) depends on the actual floating point number. - Jon _______________________________________________ Mono-list maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-list
