aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocom/core/timer.h
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2018-12-09 01:26:55 +0100
committerPau Espin Pedrol <pespin@sysmocom.de>2018-12-10 11:02:16 +0100
commit2ca8cebac67cfa179af77aa8d507fd4b96b2b230 (patch)
treedcc10aa0a2dcf211e7865484deaf31343607158a /include/osmocom/core/timer.h
parent4f4905fac590be8feea0b22010444ed40d7b11b5 (diff)
timer: Fix clockid_t undefined on MacOS < 10.12
Diffstat (limited to 'include/osmocom/core/timer.h')
-rw-r--r--include/osmocom/core/timer.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/osmocom/core/timer.h b/include/osmocom/core/timer.h
index caf4c678..19797662 100644
--- a/include/osmocom/core/timer.h
+++ b/include/osmocom/core/timer.h
@@ -45,6 +45,7 @@
#include <osmocom/core/linuxlist.h>
#include <osmocom/core/linuxrbtree.h>
+#include <osmocom/core/timer_compat.h>
/* convert absolute time (in seconds) to elapsed days/hours/minutes */
#define OSMO_SEC2MIN(sec) ((sec % (60 * 60)) / 60)