diff options
author | Michael Meeuwisse <mickeymeeuw@gmail.com> | 2016-02-23 23:49:57 +0100 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2016-03-02 00:44:56 -0500 |
commit | 6e694d6960d9d50a119e8660c95bf9308e609053 (patch) | |
tree | 355dab8d0f67668b064ffde76dcb36a28c30b9a7 /src/multibyte | |
parent | 6d70c08a2c37745df637b231711f6dec79dbc6e1 (diff) | |
download | musl-6e694d6960d9d50a119e8660c95bf9308e609053.tar.gz musl-6e694d6960d9d50a119e8660c95bf9308e609053.tar.xz musl-6e694d6960d9d50a119e8660c95bf9308e609053.zip |
explicitly include stdio.h to get EOF definition needed by wctob
Diffstat (limited to 'src/multibyte')
-rw-r--r-- | src/multibyte/wctob.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/multibyte/wctob.c b/src/multibyte/wctob.c index 4aeda6a1..b484a3fd 100644 --- a/src/multibyte/wctob.c +++ b/src/multibyte/wctob.c @@ -1,4 +1,5 @@ #include <wchar.h> +#include <stdio.h> #include <stdlib.h> #include "internal.h" |