aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Somers <asomers@FreeBSD.org>2018-01-12 04:26:40 +0000
committerAlan Somers <asomers@FreeBSD.org>2018-01-12 04:26:40 +0000
commit066ebd56c13b1599f1b3d67b3b77a9d70d648e75 (patch)
tree6293ffd4a58db542cef5f78d527d0bf1b2c89611
parentd03890153d23e7cf30a810ece1e07f620863c903 (diff)
downloadsrc-066ebd56c13b1599f1b3d67b3b77a9d70d648e75.tar.gz
src-066ebd56c13b1599f1b3d67b3b77a9d70d648e75.zip
dhclient(8): add missing include
stdbool is technically needed, though we can get away without it due to header pollution. MFC after: 3 days
Notes
Notes: svn path=/head/; revision=327862
-rw-r--r--sbin/dhclient/parse.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sbin/dhclient/parse.c b/sbin/dhclient/parse.c
index 909fc87f72dc..4018f70f3a5d 100644
--- a/sbin/dhclient/parse.c
+++ b/sbin/dhclient/parse.c
@@ -45,6 +45,8 @@
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
+#include <stdbool.h>
+
#include "dhcpd.h"
#include "dhctoken.h"