Code

Use stdbool.h's bool type instead of _Bool.
[sysdb.git] / src / tools / sysdb / input.h
index ccdce039881ca27893c53e3d5e0cb6ee6ea4cca0..0ba5c0a4dd385169fc439c1fe133b33464f609a8 100644 (file)
@@ -38,8 +38,8 @@ typedef struct {
        size_t tokenizer_pos;
        size_t query_len;
 
-       _Bool interactive;
-       _Bool eof;
+       bool interactive;
+       bool eof;
 } sdb_input_t;
 
 #define SDB_INPUT_INIT { NULL, NULL, 0, 0, 1, 0 }