From 7e7a21b05b79ebf4b6637d949ef1d8dc8d316fdf Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Sun, 5 Feb 2023 14:00:52 -0800 Subject: diff: use C23 bool * bootstrap.conf (gnulib_modules): Add stdbool. * src/die.h, src/system.h: Do not include . --- bootstrap.conf | 1 + src/die.h | 1 - src/system.h | 2 -- 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/bootstrap.conf b/bootstrap.conf index 4ddd0cc..bbbe0f5 100644 --- a/bootstrap.conf +++ b/bootstrap.conf @@ -78,6 +78,7 @@ sigprocmask stat stat-macros stat-time +stdbool stdint stpcpy strcase diff --git a/src/die.h b/src/die.h index 44f4a2c..a9afa2f 100644 --- a/src/die.h +++ b/src/die.h @@ -20,7 +20,6 @@ # define DIE_H # include -# include # include /* Like 'error (STATUS, ...)', except STATUS must be a nonzero constant. diff --git a/src/system.h b/src/system.h index 469522d..b37893f 100644 --- a/src/system.h +++ b/src/system.h @@ -108,8 +108,6 @@ int strcasecmp (char const *, char const *); #define MIN(a, b) ((a) <= (b) ? (a) : (b)) #define MAX(a, b) ((a) >= (b) ? (a) : (b)) -#include - #include #include #include -- cgit v1.2.1