Include the compatibility time.h header in the common/time.h
to override any platform-defined constants. It seems that the
NSEC_PER_SEC (and other similar definitions) are defined to
nothing on macOS. This was already fixed in the compatibility
header in the past.
This also adds USEC_PER_SEC to the list of undef-initions
on macOS.
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
#undef NSEC_PER_SEC
#undef NSEC_PER_MSEC
#undef NSEC_PER_USEC
+#undef USEC_PER_SEC
#endif /* __APPLE__ */
#include <time.h>
#include <stdbool.h>
#include <common/macros.h>
+#include <common/compat/time.h>
#define MSEC_PER_SEC 1000ULL
#define NSEC_PER_SEC 1000000000ULL
#define NSEC_PER_MSEC 1000000ULL
#define NSEC_PER_USEC 1000ULL
-#ifndef USEC_PER_SEC
#define USEC_PER_SEC 1000000ULL
-#endif
#define USEC_PER_MSEC 1000ULL
#define SEC_PER_MINUTE 60ULL