mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 15:42:39 +00:00
f6b31f344d
* Add toolchain to Docker image
10 lines
198 B
C++
10 lines
198 B
C++
#pragma once
|
|
|
|
#include <time.h>
|
|
|
|
#if defined (OS_DARWIN)
|
|
# define CLOCK_MONOTONIC_COARSE CLOCK_MONOTONIC
|
|
#elif defined (OS_FREEBSD)
|
|
# define CLOCK_MONOTONIC_COARSE CLOCK_MONOTONIC_FAST
|
|
#endif
|