Changeset 6921178 in mainline
- Timestamp:
- 2011-08-17T20:25:05Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c53a705
- Parents:
- 55b1efd
- Location:
- uspace/lib/posix
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/ctype.c
r55b1efd r6921178 37 37 38 38 #include "ctype.h" 39 40 // TODO: propose for inclusion in libc41 39 42 40 /** -
uspace/lib/posix/errno.h
r55b1efd r6921178 57 57 * redefinition for such error codes. 58 58 * 59 * FIXME: maybe all HOS error codes should be redefined59 * XXX: maybe all HOS error codes should be redefined 60 60 * 61 61 * NOTE: This redefinition is slightly POSIX incompatible, since the -
uspace/lib/posix/fnmatch.c
r55b1efd r6921178 624 624 } 625 625 626 // FIXME: put the testcases somewhere else626 // FIXME: put the testcases to the app/tester after fnmatch is included into libc 627 627 628 628 #if 0 -
uspace/lib/posix/stdbool.h
r55b1efd r6921178 36 36 #define POSIX_STDBOOL_H_ 37 37 38 // TODO: propose for inclusion in libc and drop bool.h,39 // it's a very silly incompatibility with standard C40 41 38 #ifdef LIBC_BOOL_H_ 42 39 #error "You can't include bool.h and stdbool.h at the same time." -
uspace/lib/posix/stdio/scanf.c
r55b1efd r6921178 707 707 break; 708 708 case LMOD_t: ; 709 // FIXME: What is unsigned counterpart of the ptrdiff_t?709 // XXX: What is unsigned counterpart of the ptrdiff_t? 710 710 size_t *pt = va_arg(arg, size_t *); 711 711 *pt = (size_t) ures; … … 1221 1221 } 1222 1222 1223 // FIXME: put the testcases somewhere else1223 // FIXME: put the testcases to the app/tester after scanf is included into libc 1224 1224 1225 1225 #if 0 -
uspace/lib/posix/string.h
r55b1efd r6921178 51 51 * void *memmove(void *, const void *, size_t); 52 52 * 53 * unimplemented due to missing locales53 * TODO: not implemented due to missing locale support 54 54 * 55 55 * int strcoll_l(const char *, const char *, locale_t); 56 56 * char *strerror_l(int, locale_t); 57 57 * size_t strxfrm_l(char *restrict, const char *restrict, size_t, locale_t); 58 *59 58 */ 60 61 // TODO: provide *_l once there is locale.h62 59 63 60 #ifndef NULL -
uspace/lib/posix/strings.h
r55b1efd r6921178 48 48 #endif 49 49 50 /* TODO: not implemented due to missing locale .h50 /* TODO: not implemented due to missing locale support 51 51 * 52 52 * int strcasecmp_l(const char *, const char *, locale_t);
Note:
See TracChangeset
for help on using the changeset viewer.