summaryrefslogtreecommitdiff
path: root/lib/json.h
diff options
context:
space:
mode:
authorRuss White <russ@riw.us>2017-06-30 10:44:03 -0400
committerGitHub <noreply@github.com>2017-06-30 10:44:03 -0400
commit801ec168a41bbeed2d2935d0e396396356873cba (patch)
tree469bf84e0b7621857e15055d10f21a2d506d5ab9 /lib/json.h
parentfd576f61bc69eb303eb7400f1234a4253bce9087 (diff)
parentd849012d19f1743691a05f4c38f69e6af5110806 (diff)
Merge pull request #769 from qlyoung/fix-json-int
lib: always use 64-bit integers for json
Diffstat (limited to 'lib/json.h')
-rw-r--r--lib/json.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/json.h b/lib/json.h
index 5faaaa841a..86271703f4 100644
--- a/lib/json.h
+++ b/lib/json.h
@@ -43,8 +43,6 @@ extern int use_json(const int argc, struct cmd_token *argv[]);
extern void json_object_string_add(struct json_object* obj, const char *key,
const char *s);
extern void json_object_int_add(struct json_object* obj, const char *key,
- int32_t i);
-extern void json_object_long_add(struct json_object* obj, const char *key,
int64_t i);
extern void json_object_boolean_false_add(struct json_object* obj,
const char *key);