summaryrefslogtreecommitdiffstats
path: root/include/zix/btree.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-10-20 21:34:24 -0400
committerDavid Robillard <d@drobilla.net>2022-10-21 12:45:39 -0400
commit03554253ae5dbdd12d619db81864b38d5e300171 (patch)
treeca08314421d4f80e46317eb2c56fd88cf9f3984f /include/zix/btree.h
parent2ff624eae24742faf17889f858dbdaa6d4a064ea (diff)
downloadzix-03554253ae5dbdd12d619db81864b38d5e300171.tar.gz
zix-03554253ae5dbdd12d619db81864b38d5e300171.tar.bz2
zix-03554253ae5dbdd12d619db81864b38d5e300171.zip
Factor out public declaration scope markers
Diffstat (limited to 'include/zix/btree.h')
-rw-r--r--include/zix/btree.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/include/zix/btree.h b/include/zix/btree.h
index 33f47d1..0658be8 100644
--- a/include/zix/btree.h
+++ b/include/zix/btree.h
@@ -13,9 +13,7 @@
#include <stddef.h>
#include <stdint.h>
-#ifdef __cplusplus
-extern "C" {
-#endif
+ZIX_BEGIN_DECLS
/**
@defgroup zix_btree BTree
@@ -213,8 +211,6 @@ zix_btree_iter_next(ZixBTreeIter iter);
@}
*/
-#ifdef __cplusplus
-} /* extern "C" */
-#endif
+ZIX_END_DECLS
#endif /* ZIX_BTREE_H */