diff options
author | Pau Espin Pedrol <pespin@sysmocom.de> | 2018-12-09 01:26:55 +0100 |
---|---|---|
committer | Pau Espin Pedrol <pespin@sysmocom.de> | 2018-12-10 11:02:16 +0100 |
commit | 2ca8cebac67cfa179af77aa8d507fd4b96b2b230 (patch) | |
tree | dcc10aa0a2dcf211e7865484deaf31343607158a /include/osmocom/core/timer.h | |
parent | 4f4905fac590be8feea0b22010444ed40d7b11b5 (diff) |
timer: Fix clockid_t undefined on MacOS < 10.12
Related: OS#3722
Change-Id: If466a64bd44dcb8ae8a9b7f82bc9c9435ba3e640
Diffstat (limited to 'include/osmocom/core/timer.h')
-rw-r--r-- | include/osmocom/core/timer.h | 1 |
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) |