|
Message-Id: <1456267797-18109-1-git-send-email-mickeymeeuw+git@gmail.com> Date: Tue, 23 Feb 2016 23:49:57 +0100 From: Michael Meeuwisse <mickeymeeuw@...il.com> To: musl@...ts.openwall.com Cc: Michael Meeuwisse <mickeymeeuw+git@...il.com> Subject: [PATCH] Include missing reference to stdio.h for EOF definition No binary changes as it was already included implicitly; . src/multibyte/internal.h .. ./src/internal/locale_impl.h ... ./src/internal/libc.h .... ./include/stdio.h However, all evidence suggest this to be a fortunate accident rather than an intentional design choice. Signed-off-by: Michael Meeuwisse <mickeymeeuw+git@...il.com> --- src/multibyte/wctob.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/multibyte/wctob.c b/src/multibyte/wctob.c index 4aeda6a..b484a3f 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" -- 2.5.0
Powered by blists - more mailing lists
Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.