From 2b7d75d2e606df783c7329909a5aec65309ceb7c Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Sat, 24 Jan 2015 20:03:09 -0800 Subject: [PATCH] Add missing includes. Change-Id: I3d1ad54418f69f947e2d829d63b53d44581bfd86 --- netcfg/netcfg.c | 1 + toolbox/dynarray.c | 3 ++- toolbox/watchprops.c | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/netcfg/netcfg.c b/netcfg/netcfg.c index 4e83ba429..204bf1d5c 100644 --- a/netcfg/netcfg.c +++ b/netcfg/netcfg.c @@ -22,6 +22,7 @@ #include #include #include +#include void die(const char *reason) { diff --git a/toolbox/dynarray.c b/toolbox/dynarray.c index e9b7b03fd..47594e00b 100644 --- a/toolbox/dynarray.c +++ b/toolbox/dynarray.c @@ -1,6 +1,7 @@ #include "dynarray.h" -#include #include +#include +#include void dynarray_init( dynarray_t *a ) diff --git a/toolbox/watchprops.c b/toolbox/watchprops.c index 0d05aba51..cd62922cf 100644 --- a/toolbox/watchprops.c +++ b/toolbox/watchprops.c @@ -1,5 +1,6 @@ #include #include +#include #include #include