aboutsummaryrefslogtreecommitdiff
path: root/make.c
diff options
context:
space:
mode:
Diffstat (limited to 'make.c')
-rw-r--r--make.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/make.c b/make.c
index 81b6134..7214fc2 100644
--- a/make.c
+++ b/make.c
@@ -1,12 +1,12 @@
#include <errno.h>
#include <limits.h>
-#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "cbs.h"
+#include "src/compat.h"
#define CC "cc"
#define CFLAGS "-Wall", "-Wextra", "-Wpedantic", "-Werror", "-pipe"
@@ -85,9 +85,6 @@ main(int argc, char **argv)
cmdadd(&c, CC, CFLAGS);
cmdadd(&c, buf);
-#ifdef CBS_IS_C23
- cmdadd(&c, "-DGRAB_IS_C23=1");
-#endif
if (pflag)
cmdadd(&c, "-DGRAB_DO_PCRE=1", "-lpcre2-posix");
if (debug)