mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 19:14:30 +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
|