cleanup some includes - json2tsv - JSON to TSV converter
(HTM) git clone git://git.codemadness.org/json2tsv
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 2ba1ec15453197af2ef4fb5cf04157276fa70b67
(DIR) parent 27d9d1e28a0d8fac91491ff2b0bfe964c081cba5
(HTM) Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date: Tue, 28 Jan 2020 21:50:40 +0100
cleanup some includes
Diffstat:
M json.h | 2 +-
M json2tsv.c | 1 -
2 files changed, 1 insertion(+), 2 deletions(-)
---
(DIR) diff --git a/json.h b/json.h
@@ -1,4 +1,4 @@
-#include <stdint.h>
+#include <stddef.h>
enum JSONType {
JSON_TYPE_ARRAY = 'a',
(DIR) diff --git a/json2tsv.c b/json2tsv.c
@@ -1,6 +1,5 @@
#include <ctype.h>
#include <errno.h>
-#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>