X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fstdio%2Fvfwprintf.c;h=85b036c3dfe2a3dea61731f6a0f2448c514ac1fb;hb=2e5fff43dd7fc808197744c67cca7908ac19bb4f;hp=9d774fccbf553d41c1f5306fb3766e0d4e4c3aae;hpb=9cdaf1a86bf7790c8dec749118392ee78101ee37;p=musl diff --git a/src/stdio/vfwprintf.c b/src/stdio/vfwprintf.c index 9d774fcc..85b036c3 100644 --- a/src/stdio/vfwprintf.c +++ b/src/stdio/vfwprintf.c @@ -5,6 +5,7 @@ #include #include #include +#include #include #include @@ -52,6 +53,8 @@ static const unsigned char states[]['z'-'A'+1] = { }, { /* 1: l-prefixed */ S('d') = LONG, S('i') = LONG, S('o') = ULONG, S('u') = ULONG, S('x') = ULONG, S('X') = ULONG, + S('e') = DBL, S('f') = DBL, S('g') = DBL, S('a') = DBL, + S('E') = DBL, S('F') = DBL, S('G') = DBL, S('A') = DBL, S('c') = INT, S('s') = PTR, S('n') = PTR, S('l') = LLPRE, }, { /* 2: ll-prefixed */