aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2023-12-11 10:05:45 +0100
committerMarcel Holtmann <marcel@holtmann.org>2023-12-11 10:05:45 +0100
commitaa0703626db3592be598d1616c28c3341c29af1b (patch)
treef9b6bfb2a631adf05d6ebeb176570d7d34cefe72
parent61a8ed6215248badb3537e6b79513d2a9c76f4d5 (diff)
timeout: Move standard includes before C++ guard
-rw-r--r--ell/timeout.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ell/timeout.h b/ell/timeout.h
index a268ff87..2db78d8f 100644
--- a/ell/timeout.h
+++ b/ell/timeout.h
@@ -8,12 +8,12 @@
#ifndef __ELL_TIMEOUT_H
#define __ELL_TIMEOUT_H
+#include <stdint.h>
+
#ifdef __cplusplus
extern "C" {
#endif
-#include <stdint.h>
-
struct l_timeout;
typedef void (*l_timeout_notify_cb_t) (struct l_timeout *timeout,