diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2023-05-11 10:12:35 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2023-05-11 13:14:04 -0400 |
commit | 59f87eed2b930af2f31fd1d1fb2589f80f426ee0 (patch) | |
tree | 1563b95fab7fb09da5f629704315785ec0a60e64 /src/xtime.c | |
parent | 87d8d5928325f951f40b5f87292a17586b85943b (diff) | |
download | bfs-59f87eed2b930af2f31fd1d1fb2589f80f426ee0.tar.xz |
config: Provide <stdalign.h> and <stdbool.h>
In anticipation of C23, since those headers won't be necessary any more.
Diffstat (limited to 'src/xtime.c')
-rw-r--r-- | src/xtime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xtime.c b/src/xtime.c index 82690d0..406d694 100644 --- a/src/xtime.c +++ b/src/xtime.c @@ -2,9 +2,9 @@ // SPDX-License-Identifier: 0BSD #include "xtime.h" +#include "config.h" #include <errno.h> #include <limits.h> -#include <stdbool.h> #include <stdlib.h> #include <sys/time.h> #include <time.h> |