Code

Use stdbool.h's bool type instead of _Bool.
[sysdb.git] / src / include / core / plugin.h
index 4e5d1046660896bb91bb5759309fda23da448758..6580e90dfcd55a8df4ea52e0ae4ee4ff3ef7d57e 100644 (file)
@@ -36,6 +36,7 @@
 #include "liboconfig/oconfig.h"
 
 #include <stdarg.h>
+#include <stdbool.h>
 
 #ifdef __cplusplus
 extern "C" {
@@ -70,7 +71,7 @@ typedef struct {
        int sdb_module_init(sdb_plugin_info_t *info)
 
 typedef struct {
-       _Bool do_loop;
+       bool do_loop;
        sdb_time_t default_interval;
 } sdb_plugin_loop_t;
 #define SDB_PLUGIN_LOOP_INIT { 1, 0 }