Merge "vfscanf: Add support for L type modifier for long long"

This commit is contained in:
David Turner 2011-05-17 04:07:27 -07:00 committed by Android Code Review
commit c5c84c8643

@ -159,7 +159,13 @@ literal:
flags |= MAXINT;
goto again;
case 'L':
flags |= LONGDBL;
flags |=
(*fmt == 'd') ? LLONG :
(*fmt == 'i') ? LLONG :
(*fmt == 'o') ? LLONG :
(*fmt == 'u') ? LLONG :
(*fmt == 'x') ? LLONG :
LONGDBL;
goto again;
case 'h':
if (*fmt == 'h') {