Changeset 2035 for trunk/src


Ignore:
Timestamp:
Jun 15, 2005, 4:02:59 PM (20 years ago)
Author:
bird
Message:

gee, another messup with the isnan[f] stuff.

Location:
trunk/src/emx/src/lib
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/emx/src/lib/libc.def

    • Property cvs2svn:cvs-rev changed from 1.115 to 1.116
    r2034 r2035  
    258258    "___isfinitef" @271
    259259    "___isfinitel" @272
    260     "_isnan" @273   ;msun changed name
    261     "_isnanf" @274  ;msun changed name
     260    "__std_isnan" @273   ;msun changed name
     261    "__std_isnanf" @274  ;msun changed name
    262262    "___isnanl" @275
    263263    "___isnormal" @276
  • trunk/src/emx/src/lib/msun/src/s_isnan.c

    • Property cvs2svn:cvs-rev changed from 1.2 to 1.3
    r2034 r2035  
    3434/* Provided by libc */
    3535/*#if 0 - not by my libc */
     36#undef isnan
    3637int
    37 (isnan)(double d)
     38_STD(isnan)(double d)
    3839{
    3940        union IEEEd2bits u;
     
    4445/*#endif*/
    4546
     47#undef isnanf
    4648int
    47 (isnanf)(float f)
     49_STD(isnanf)(float f)
    4850{
    4951        union IEEEf2bits u;
Note: See TracChangeset for help on using the changeset viewer.