diff options
-rw-r--r-- | cbs.h | 4 | ||||
-rw-r--r-- | grab.c | 4 | ||||
-rw-r--r-- | make.c | 4 |
3 files changed, 11 insertions, 1 deletions
@@ -50,6 +50,10 @@ # error "Non-POSIX platform detected" #endif +#ifdef __APPLE__ +# define st_mtim st_mtimespec +#endif + #include <sys/stat.h> #include <sys/wait.h> @@ -5,7 +5,9 @@ #include <limits.h> #include <locale.h> #include <regex.h> -#include <stdbool.h> +#if !GRAB_IS_C23 +# include <stdbool.h> +#endif #include <stdio.h> #include <stdlib.h> #include <string.h> @@ -1,3 +1,4 @@ +#define _POSIX_C_SOURCE 200809L #include <errno.h> #include <limits.h> #include <stdbool.h> @@ -75,6 +76,9 @@ main(int argc, char **argv) } else { if (foutdated("grab", "grab.c", "da.h")) { cmdadd(&c, CC, WFLAGS); +#ifdef CBS_IS_C23 + cmdadd(&c, "-DGRAB_IS_C23=1"); +#endif if (debug) cmdadd(&c, DFLAGS); else |