From: Felix Fietkau Date: Sat, 2 Mar 2013 15:19:30 +0000 (+0100) Subject: json_script: do not rely on global includes for other libubox header files X-Git-Url: http://git.archive.openwrt.org/?p=project%2Flibubox.git;a=commitdiff_plain;h=b2010c706c85c621d5795304fd94711eb400321a json_script: do not rely on global includes for other libubox header files Signed-off-by: Felix Fietkau --- diff --git a/json_script.c b/json_script.c index bc23754..a288214 100644 --- a/json_script.c +++ b/json_script.c @@ -16,8 +16,7 @@ #include #include -#include - +#include "avl-cmp.h" #include "json_script.h" struct json_call { diff --git a/json_script.h b/json_script.h index e28b511..6c46f99 100644 --- a/json_script.h +++ b/json_script.h @@ -16,10 +16,10 @@ #ifndef __JSON_SCRIPT_H #define __JSON_SCRIPT_H -#include -#include -#include -#include +#include "avl.h" +#include "blob.h" +#include "blobmsg.h" +#include "utils.h" struct json_script_file;