Ignore:
Timestamp:
2015-09-20T11:12:33Z (10 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
fbf4dc1
Parents:
8a45707d
Message:

Move (u)intmax_t to libc. Some stdint.h work.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/posix/source/stdio/scanf.c

    r8a45707d rd6c98451  
    698698                                                        break;
    699699                                                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;
    702702                                                        break;
    703703                                                case LMOD_z: ;
     
    740740                                                        break;
    741741                                                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;
    744744                                                        break;
    745745                                                case LMOD_z: ;
Note: See TracChangeset for help on using the changeset viewer.