summaryrefslogtreecommitdiff
path: root/lib9p/core_include
diff options
context:
space:
mode:
authorLuke T. Shumaker <lukeshu@lukeshu.com>2025-04-22 15:06:50 -0600
committerLuke T. Shumaker <lukeshu@lukeshu.com>2025-05-06 11:50:46 -0600
commit39d8fd2161d0a505c5b25add023aad833714b980 (patch)
tree4df71809eb36dc83243baf6fbbc2fdcc799c8051 /lib9p/core_include
parenta9c86c0670f7ed763dedc9cc59dd288d5cc1011b (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 'lib9p/core_include')
-rw-r--r--lib9p/core_include/lib9p/core.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib9p/core_include/lib9p/core.h b/lib9p/core_include/lib9p/core.h
index 549411f..aa470de 100644
--- a/lib9p/core_include/lib9p/core.h
+++ b/lib9p/core_include/lib9p/core.h
@@ -7,7 +7,6 @@
#ifndef _LIB9P_CORE_H_
#define _LIB9P_CORE_H_
-#include <stdbool.h>
#include <sys/types.h> /* for ssize_t */
#include <libmisc/assert.h>