Author: bapt Date: Thu May 21 08:26:24 2015 New Revision: 283197 URL: https://svnweb.freebsd.org/changeset/base/283197
Log: add an include on sys/types.h because we do explicitly use size_t remove unused stdbool.h Suggested by: schwarze at OpenBSD Modified: head/usr.bin/soelim/soelim.c Modified: head/usr.bin/soelim/soelim.c ============================================================================== --- head/usr.bin/soelim/soelim.c Thu May 21 08:23:45 2015 (r283196) +++ head/usr.bin/soelim/soelim.c Thu May 21 08:26:24 2015 (r283197) @@ -27,10 +27,11 @@ #include <sys/cdefs.h> __FBSDID("$FreeBSD$"); +#include <sys/types.h> + #include <ctype.h> #include <err.h> #include <limits.h> -#include <stdbool.h> #define _WITH_GETLINE #include <stdio.h> #include <stdlib.h> _______________________________________________ svn-src-head@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"