summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Jeffery <andrew@aj.id.au>2017-04-10 16:25:04 +0930
committerAndrew Jeffery <andrew@aj.id.au>2017-04-26 11:34:00 +0930
commit36a39f6b293909926bf42874b24c66ae9cf0e5ca (patch)
tree68340ff980b89167127939b3b3d0805b86b86842
parent9aa5ff70dc515529675f432647fbbc39f7ee32fd (diff)
downloadphosphor-mboxd-36a39f6b293909926bf42874b24c66ae9cf0e5ca.tar.gz
phosphor-mboxd-36a39f6b293909926bf42874b24c66ae9cf0e5ca.zip
common: Add includes for used types
common.h makes use of va_list, stdbool and stdint types, so lets include them to make the header self-contained. Change-Id: I3a62bfd80d4f138edee749587330c498e7232f38 Signed-off-by: Andrew Jeffery <andrew@aj.id.au>
-rw-r--r--common.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/common.h b/common.h
index 14fdfe9..55b7b1e 100644
--- a/common.h
+++ b/common.h
@@ -17,6 +17,10 @@
#ifndef COMMON_H
#define COMMON_H
+#include <stdarg.h>
+#include <stdbool.h>
+#include <stdint.h>
+
#ifndef PREFIX
#define PREFIX ""
#endif
OpenPOWER on IntegriCloud