aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2023-09-22 18:53:17 +0200
committerMarcel Holtmann <marcel@holtmann.org>2023-09-22 18:53:17 +0200
commite5330b3f5afc2a9688510cf9f358d4ce1d1effbb (patch)
treef8aabf2eeead590b407a34f33162d0bbd6d1631c
parentf43513c830200a6a641ea32dde33399d94658664 (diff)
key: Move includes before the __cplusplus guard
-rw-r--r--ell/key.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ell/key.h b/ell/key.h
index 68971052..db039afc 100644
--- a/ell/key.h
+++ b/ell/key.h
@@ -23,16 +23,16 @@
#ifndef __ELL_KEY_H
#define __ELL_KEY_H
-#ifdef __cplusplus
-extern "C" {
-#endif
-
#include <stddef.h>
#include <stdbool.h>
#include <ell/cleanup.h>
#include <ell/checksum.h>
+#ifdef __cplusplus
+extern "C" {
+#endif
+
struct l_key;
struct l_keyring;