include: Include stdbool.h
authorDaniel Wagner <daniel.wagner@bmw-carit.de>
Wed, 14 Aug 2013 07:27:48 +0000 (09:27 +0200)
committerSamuel Ortiz <sameo@linux.intel.com>
Tue, 20 Aug 2013 09:05:30 +0000 (11:05 +0200)
In preperation to drop near_bool_t and use stdbool instead.

include/ndef.h
include/setting.h
include/snep.h
include/tag.h

index 14fd581..b554a79 100644 (file)
@@ -22,6 +22,8 @@
 #ifndef __NEAR_NDEF_H
 #define __NEAR_NDEF_H
 
+#include <stdbool.h>
+
 #include <near/tag.h>
 
 struct near_ndef_record;
index 8f7a26a..d287432 100644 (file)
@@ -22,6 +22,8 @@
 #ifndef __NEAR_SETTING_H
 #define __NEAR_SETTING_H
 
+#include <stdbool.h>
+
 #ifdef __cplusplus
 extern "C" {
 #endif
index ea9361a..4ce6b9c 100644 (file)
@@ -22,6 +22,8 @@
 #ifndef __NEAR_SNEP_CORE_H
 #define __NEAR_SNEP_CORE_H
 
+#include <stdbool.h>
+
 #include <near/device.h>
 
 #define NEAR_SNEP_VERSION              0x10
index c1b5342..412bc70 100644 (file)
@@ -23,6 +23,7 @@
 #define __NEAR_TAG_H
 
 #include <stdint.h>
+#include <stdbool.h>
 
 #include <glib.h>