aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2023-12-11 10:04:37 +0100
committerMarcel Holtmann <marcel@holtmann.org>2023-12-11 10:04:37 +0100
commit7ed685d1ba070a775fe708017b685b3f8f64be87 (patch)
treeed1933eb055c471585f40d38befd6478438f2998
parentc1d27bd75fa0a2b94a35dd7990b23b6c110f49a4 (diff)
time: Move standard includes before C++ guard
-rw-r--r--ell/time.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ell/time.h b/ell/time.h
index f74e4571..7be41a24 100644
--- a/ell/time.h
+++ b/ell/time.h
@@ -8,13 +8,13 @@
#ifndef __ELL_TIME_H
#define __ELL_TIME_H
+#include <stdint.h>
+#include <stdbool.h>
+
#ifdef __cplusplus
extern "C" {
#endif
-#include <stdint.h>
-#include <stdbool.h>
-
#define L_USEC_PER_SEC 1000000ULL
#define L_MSEC_PER_SEC 1000ULL
#define L_USEC_PER_MSEC 1000ULL