svn commit: r283197 - head/usr.bin/soelim

Baptiste Daroussin bapt at FreeBSD.org
Thu May 21 08:26:25 UTC 2015


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>


More information about the svn-src-head mailing list