ClickHouse/libs/libcommon/include/common/exp10.h
proller b2b16b407f More include fixes (#462)
* More include fixes

* fix
2017-02-08 01:26:32 +04:00

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