diff options
author | Mike Frysinger <vapier@gentoo.org> | 2016-02-29 13:13:38 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2016-03-01 11:07:45 -0600 |
commit | bef3a510a63543f94c8bdbb229a2f5f538fa0ec1 (patch) | |
tree | a6594c76222c8714ae8ad1809c7d15b7544cec8f /scripts | |
parent | c1161cf09f5d9646b0e0c6ec504ed26a0623e691 (diff) | |
download | toybox-bef3a510a63543f94c8bdbb229a2f5f538fa0ec1.tar.gz |
config2help: add missing ctype.h include
This file uses isspace which is defined in the ctype.h header.
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/config2help.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/config2help.c b/scripts/config2help.c index 6b32fc4e..6ec5e841 100644 --- a/scripts/config2help.c +++ b/scripts/config2help.c @@ -1,5 +1,6 @@ //#include "toys.h" +#include <ctype.h> #include <stdio.h> #include <string.h> #include <stdlib.h> |