diff options
Diffstat (limited to 'libmisc')
-rw-r--r-- | libmisc/assert.c | 2 | ||||
-rw-r--r-- | libmisc/include/libmisc/map.h | 1 | ||||
-rw-r--r-- | libmisc/tests/test_assert.c | 1 | ||||
-rw-r--r-- | libmisc/tests/test_rand.c | 3 |
4 files changed, 1 insertions, 6 deletions
diff --git a/libmisc/assert.c b/libmisc/assert.c index 8bca524..540d2fd 100644 --- a/libmisc/assert.c +++ b/libmisc/assert.c @@ -4,8 +4,6 @@ * SPDX-License-Identifier: AGPL-3.0-or-later */ -#include <stdbool.h> /* for bool, true, false */ - #define LOG_NAME ASSERT #include <libmisc/log.h> /* for log_errorf() */ diff --git a/libmisc/include/libmisc/map.h b/libmisc/include/libmisc/map.h index 6622595..113bc0e 100644 --- a/libmisc/include/libmisc/map.h +++ b/libmisc/include/libmisc/map.h @@ -7,7 +7,6 @@ #ifndef _LIBMISC_MAP_H_ #define _LIBMISC_MAP_H_ -#include <stdbool.h> #include <stddef.h> /* for size_t */ #include <stdint.h> /* for uint8_t */ diff --git a/libmisc/tests/test_assert.c b/libmisc/tests/test_assert.c index 15f9446..c6d2dc1 100644 --- a/libmisc/tests/test_assert.c +++ b/libmisc/tests/test_assert.c @@ -6,7 +6,6 @@ #include <setjmp.h> #include <stdarg.h> /* for va_list, va_start(), va_end() */ -#include <stdbool.h> #include <stdlib.h> #include <string.h> diff --git a/libmisc/tests/test_rand.c b/libmisc/tests/test_rand.c index 8076155..3596d94 100644 --- a/libmisc/tests/test_rand.c +++ b/libmisc/tests/test_rand.c @@ -1,10 +1,9 @@ /* libmisc/tests/test_rand.c - Tests for <libmisc/rand.h> * - * Copyright (C) 2024 Luke T. Shumaker <lukeshu@lukeshu.com> + * Copyright (C) 2024-2025 Luke T. Shumaker <lukeshu@lukeshu.com> * SPDX-License-Identifier: AGPL-3.0-or-later */ -#include <stdbool.h> #include <setjmp.h> #include <libmisc/rand.h> |