Patch allows for json-c compile with -Werror and not fail due to
-Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations
Geoffrey Young, geoff at modperlcookbook dot org



git-svn-id: http://svn.metaparadigm.com/svn/json-c/trunk@20 327403b1-1117-474d-bef2-5cb71233fd97
diff --git a/json_tokener.h b/json_tokener.h
index 2c7ea69..350b1c1 100644
--- a/json_tokener.h
+++ b/json_tokener.h
@@ -79,7 +79,7 @@
 
 extern const char* json_tokener_errors[];
 
-extern struct json_tokener* json_tokener_new();
+extern struct json_tokener* json_tokener_new(void);
 extern void json_tokener_free(struct json_tokener *tok);
 extern void json_tokener_reset(struct json_tokener *tok);
 extern struct json_object* json_tokener_parse(char *str);