aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2023-12-11 10:05:54 +0100
committerMarcel Holtmann <marcel@holtmann.org>2023-12-11 10:05:54 +0100
commitdfea4613c1f2360950fffcad3b97600565f5f76c (patch)
tree57265460b505048f70349b7f4f1ba1c1b3430574
parentaa0703626db3592be598d1616c28c3341c29af1b (diff)
uintset: Move standard includes before C++ guard
-rw-r--r--ell/uintset.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ell/uintset.h b/ell/uintset.h
index c39f443e..5b752e6a 100644
--- a/ell/uintset.h
+++ b/ell/uintset.h
@@ -8,15 +8,15 @@
#ifndef __ELL_UINTSET_H
#define __ELL_UINTSET_H
-#ifdef __cplusplus
-extern "C" {
-#endif
-
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#include <ell/cleanup.h>
+#ifdef __cplusplus
+extern "C" {
+#endif
+
typedef void (*l_uintset_foreach_func_t) (uint32_t number, void *user_data);
struct l_uintset;