Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 21 May 2015 08:26:24 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r283197 - head/usr.bin/soelim
Message-ID:  <201505210826.t4L8QOjm046615@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201505210826.t4L8QOjm046615>