diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-01-11 22:55:45 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-01-11 22:55:45 +0100 |
commit | f0b43c611e9d33f57fcc7abd8f49132fc3cd7d95 (patch) | |
tree | d87a4b690e34f216bc0c1a822acc538549c5d3f3 | |
parent | 475d7ccc4c23972998a666204af77502ec3dbe04 (diff) |
Make things work a bit better on C23
-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 |