diff options
author | Jo-Philipp Wich <jo@mein.io> | 2022-03-15 23:19:36 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2022-03-15 23:19:36 +0100 |
commit | ab46fdfe742e754a8a56207ce1fc5653085696ad (patch) | |
tree | dee32d4bba166995bdb32d4cf8f1fcad8bcead4d /main.c | |
parent | b8f49b1b00c624df1208cd854aa65516b47c4c11 (diff) |
treewide: remove legacy json-c include directives
We now include `json-c/json-c.h` on all supported environments.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -23,12 +23,7 @@ #include <fcntl.h> #include <sys/stat.h> #include <sys/types.h> - -#ifdef JSONC - #include <json.h> -#else - #include <json-c/json.h> -#endif +#include <json-c/json.h> #include "ucode/compiler.h" #include "ucode/lexer.h" |