diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2012-03-20 16:00:23 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2012-03-20 16:00:23 -0700 |
commit | eb96ffb07d0b1b23ecfaf9520d6757c7dbea0bd1 (patch) | |
tree | aae4fe72d6bb48e8e0cb0d0b85676895fab29a8e /stdio-common/vfprintf.c | |
parent | d1af992d0d8184db0a4d264c00a2720722e1a280 (diff) | |
download | glibc-eb96ffb07d0b1b23ecfaf9520d6757c7dbea0bd1.tar.gz glibc-eb96ffb07d0b1b23ecfaf9520d6757c7dbea0bd1.tar.xz glibc-eb96ffb07d0b1b23ecfaf9520d6757c7dbea0bd1.zip |
Move stdio-common/_itoa.h to sysdeps/generic
Diffstat (limited to 'stdio-common/vfprintf.c')
-rw-r--r-- | stdio-common/vfprintf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdio-common/vfprintf.c b/stdio-common/vfprintf.c index e454927bfd..1e904833a3 100644 --- a/stdio-common/vfprintf.c +++ b/stdio-common/vfprintf.c @@ -26,7 +26,7 @@ #include <wchar.h> #include <bits/libc-lock.h> #include <sys/param.h> -#include "_itoa.h" +#include <_itoa.h> #include <locale/localeinfo.h> #include <stdio.h> @@ -102,7 +102,7 @@ # define ISDIGIT(Ch) ((unsigned int) ((Ch) - L'0') < 10) # define STR_LEN(Str) __wcslen (Str) -# include "_itowa.h" +# include <_itowa.h> # define PUT(F, S, N) _IO_sputn ((F), (S), (N)) # define PAD(Padchar) \ |