Fix a compiler warning about a missing prototype for tolower() when building the installer's cut down sysctl.
ok? Index: distrib/special/sysctl/sysctl.c =================================================================== RCS file: /cvs/src/distrib/special/sysctl/sysctl.c,v retrieving revision 1.10 diff -u -p -r1.10 sysctl.c --- distrib/special/sysctl/sysctl.c 10 Feb 2018 05:59:06 -0000 1.10 +++ distrib/special/sysctl/sysctl.c 17 Feb 2018 23:33:44 -0000 @@ -24,10 +24,11 @@ #include <netinet/in.h> -#include <unistd.h> +#include <ctype.h> #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <unistd.h> #define SOIIKEY_LEN 16 -- Christian "naddy" Weisgerber [email protected]
