- Timestamp:
- Sep 10, 2006, 1:36:37 AM (19 years ago)
- Location:
- trunk/libc
- Files:
-
- 3 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libc/ChangeLog.LIBC
r2810 r2813 2 2 3 3 TODO: open replace on RAMFS fails with error 32! 4 5 2006-09-09: knut st. osmundsen <bird-gccos2-spam@anduin.net> 6 - libc: 7 o #125: Implemented nan(), nanl(), and nanf(). 4 8 5 9 2006-09-08: knut st. osmundsen <bird-gccos2-spam@anduin.net> -
trunk/libc/include/math.h
r2150 r2813 490 490 long double truncl(long double); 491 491 492 /* bird: these were missing, gcc apparently inlines them.*/492 /* bird: start */ 493 493 double nan(const char *); 494 494 float nanf(const char *); 495 long double nanl(const char *); 496 /* bird: end */ 495 497 496 498 #endif /* __ISO_C_VISIBLE >= 1999 */ -
trunk/libc/src/libc/libc.def
r2787 r2813 1955 1955 "___libc_Back_termDll" @1953 1956 1956 "___libc_ForkDeregisterModule" @1954 1957 "__std_nan" @1955 1958 "__std_nanf" @1956 1959 "__std_nanl" @1957 1960 -
trunk/libc/src/libc/math/Makefile.kmk
r2702 r2813 35 35 libc_libc_math_SOURCES = \ 36 36 $(PATH_LIBC_SRC)/libc/math/cbrtl.c \ 37 $(PATH_LIBC_SRC)/libc/math/nan.c \ 38 $(PATH_LIBC_SRC)/libc/math/nanf.c \ 39 $(PATH_LIBC_SRC)/libc/math/nanl.c \ 37 40 38 41 libc_libc_math_SOURCES.x86 = \
Note:
See TracChangeset
for help on using the changeset viewer.