Changeset 102a729 in mainline for uspace/lib/posix/stdlib
- Timestamp:
- 2011-07-20T19:43:22Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4cf8ca6
- Parents:
- 087c8798
- Location:
- uspace/lib/posix/stdlib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/stdlib/strtol.c
r087c8798 r102a729 190 190 /* overflow */ 191 191 errno = ERANGE; 192 result = max_value;192 result = real_max_value; 193 193 break; 194 194 } -
uspace/lib/posix/stdlib/strtold.c
r087c8798 r102a729 547 547 548 548 if (endptr != NULL) { 549 *endptr = (char *) &nptr[i + 3];550 } 551 errno = E RANGE;552 return negative ? -0.0l : +0.0l;549 *endptr = (char *) nptr; 550 } 551 errno = EINVAL; 552 return 0; 553 553 } 554 554
Note:
See TracChangeset
for help on using the changeset viewer.