mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-01 12:01:58 +00:00
10 lines
119 B
C++
10 lines
119 B
C++
#pragma once
|
|
|
|
#include <cmath>
|
|
|
|
double musl_exp10(double x);
|
|
|
|
#if defined(__FreeBSD__)
|
|
#define exp10 musl_exp10
|
|
#endif
|