diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-04-22 15:06:50 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-05-06 11:50:46 -0600 |
commit | 39d8fd2161d0a505c5b25add023aad833714b980 (patch) | |
tree | 4df71809eb36dc83243baf6fbbc2fdcc799c8051 /libmisc/include | |
parent | a9c86c0670f7ed763dedc9cc59dd288d5cc1011b (diff) |
Use C23
This gives us:
- [[maybe_unused]] instead of [[gnu::unused]]
- bool/true/false are predefined, so no need for <stdbool.h>
Diffstat (limited to 'libmisc/include')
-rw-r--r-- | libmisc/include/libmisc/map.h | 1 |
1 files changed, 0 insertions, 1 deletions
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 */ |