Changeset d6c98451 in mainline for uspace/lib/posix/source
- Timestamp:
- 2015-09-20T11:12:33Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- fbf4dc1
- Parents:
- 8a45707d
- Location:
- uspace/lib/posix/source
- Files:
-
- 2 edited
-
stdio/scanf.c (modified) (2 diffs)
-
stdlib/strtol.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/source/stdio/scanf.c
r8a45707d rd6c98451 698 698 break; 699 699 case LMOD_j: ; 700 posix_uintmax_t *pj = va_arg(arg, posix_uintmax_t *);701 *pj = ( posix_uintmax_t) ures;700 uintmax_t *pj = va_arg(arg, uintmax_t *); 701 *pj = (uintmax_t) ures; 702 702 break; 703 703 case LMOD_z: ; … … 740 740 break; 741 741 case LMOD_j: ; 742 posix_intmax_t *pj = va_arg(arg, posix_intmax_t *);743 *pj = ( posix_intmax_t) sres;742 intmax_t *pj = va_arg(arg, intmax_t *); 743 *pj = (intmax_t) sres; 744 744 break; 745 745 case LMOD_z: ; -
uspace/lib/posix/source/stdlib/strtol.c
r8a45707d rd6c98451 43 43 #include "posix/inttypes.h" 44 44 #include "posix/limits.h" 45 46 #define intmax_t posix_intmax_t47 #define uintmax_t posix_uintmax_t48 45 49 46 /**
Note:
See TracChangeset
for help on using the changeset viewer.
