no way to avoid the typedef for supporting old json releases
[ppastats.git] / src / lp_json.c
index e02ef62..c9379c5 100644 (file)
 #include <string.h>
 #include <time.h>
 
-#include <config.h>
 #include "lp_json.h"
 #include "lp_ws.h"
 
-/* Declares json_bool to have consistent code even with
-   old json lib releases using boolean instead of json_bool.*/
-#ifndef HAVE_JSON_BOOL
-typedef boolean json_bool;
-#endif
-
 static time_t json_to_time(json_object *json)
 {
        const char *str;