From: Isaac Dunham Date: Wed, 5 Aug 2015 02:40:56 +0000 (-0700) Subject: scripts/mkflags.c: add missing unistd.h, ctype.h X-Git-Tag: android-x86-6.0-r1~58^2~87 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=79191b6c4857ee08f093ba792c9d9db4cb4f1258;p=android-x86%2Fexternal-toybox.git scripts/mkflags.c: add missing unistd.h, ctype.h --- diff --git a/scripts/mkflags.c b/scripts/mkflags.c index d87087bc..7e57f843 100644 --- a/scripts/mkflags.c +++ b/scripts/mkflags.c @@ -6,10 +6,12 @@ // This is intentionally crappy code because we control the inputs. It leaks // memory like a sieve and segfaults if malloc returns null, but does the job. +#include #include #include #include #include +#include struct flag { struct flag *next;