Changeset dc12262 in mainline for uspace/lib/posix
- Timestamp:
- 2017-05-04T22:12:27Z (9 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e141281
- Parents:
- 93ad8166
- Location:
- uspace/lib/posix/source
- Files:
-
- 3 edited
-
stdio/scanf.c (modified) (1 diff)
-
stdlib/strtol.c (modified) (1 diff)
-
stdlib/strtold.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/source/stdio/scanf.c
r93ad8166 rdc12262 466 466 case 'S': 467 467 *modifier = LMOD_l; 468 /* fallthrough */468 /* Fallthrough */ 469 469 case 's': 470 470 return 1; 471 471 case 'C': 472 472 *modifier = LMOD_l; 473 /* fallthrough */473 /* Fallthrough */ 474 474 case 'c': 475 475 return 1; -
uspace/lib/posix/source/stdlib/strtol.c
r93ad8166 rdc12262 142 142 :(((uintmax_t) -(min_value + 1)) + 1); 143 143 144 /* fallthrough */144 /* Fallthrough */ 145 145 case '+': 146 146 i++; -
uspace/lib/posix/source/stdlib/strtold.c
r93ad8166 rdc12262 423 423 case '-': 424 424 negative = true; 425 /* fallthrough */425 /* Fallthrough */ 426 426 case '+': 427 427 i++;
Note:
See TracChangeset
for help on using the changeset viewer.
