aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2015-05-21 08:26:24 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2015-05-21 08:26:24 +0000
commitb704d1f289dda7b8b08b7a73d3a0fe2d886ba4dc (patch)
tree9e6ec3a53218a9368b0c0e5d5904600e34d1a05b
parent46cc634986d4f4ebdb8bf408312680049e5823d3 (diff)
downloadsrc-b704d1f289dda7b8b08b7a73d3a0fe2d886ba4dc.tar.gz
src-b704d1f289dda7b8b08b7a73d3a0fe2d886ba4dc.zip
add an include on sys/types.h because we do explicitly use size_t
remove unused stdbool.h Suggested by: schwarze at OpenBSD
Notes
Notes: svn path=/head/; revision=283197
-rw-r--r--usr.bin/soelim/soelim.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/soelim/soelim.c b/usr.bin/soelim/soelim.c
index 587e4061bc97..4d747ee13bf8 100644
--- a/usr.bin/soelim/soelim.c
+++ b/usr.bin/soelim/soelim.c
@@ -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>