| cleanup some includes - json2tsv - JSON to TSV converter | |
| git clone git://git.codemadness.org/json2tsv | |
| Log | |
| Files | |
| Refs | |
| README | |
| LICENSE | |
| --- | |
| commit 2ba1ec15453197af2ef4fb5cf04157276fa70b67 | |
| parent 27d9d1e28a0d8fac91491ff2b0bfe964c081cba5 | |
| Author: Hiltjo Posthuma <[email protected]> | |
| 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(-) | |
| --- | |
| diff --git a/json.h b/json.h | |
| @@ -1,4 +1,4 @@ | |
| -#include <stdint.h> | |
| +#include <stddef.h> | |
| enum JSONType { | |
| JSON_TYPE_ARRAY = 'a', | |
| 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> |