summaryrefslogtreecommitdiffhomepage
path: root/main.c
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2022-03-15 23:19:36 +0100
committerJo-Philipp Wich <jo@mein.io>2022-03-15 23:19:36 +0100
commitab46fdfe742e754a8a56207ce1fc5653085696ad (patch)
treedee32d4bba166995bdb32d4cf8f1fcad8bcead4d /main.c
parentb8f49b1b00c624df1208cd854aa65516b47c4c11 (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.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/main.c b/main.c
index b825fdb..c974c69 100644
--- a/main.c
+++ b/main.c
@@ -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"