mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-12 10:34:21 +00:00
b2b16b407f
* More include fixes * fix
14 lines
166 B
C++
14 lines
166 B
C++
#pragma once
|
|
|
|
#include <cmath>
|
|
|
|
double musl_exp10(double x);
|
|
|
|
#if defined(__FreeBSD__)
|
|
#define exp10 musl_exp10
|
|
#endif
|
|
|
|
#ifdef __APPLE__
|
|
#define exp10 __exp10
|
|
#endif
|