diff options
| author | Charles Karney <charles.karney@sri.com> | 2019-09-18 07:08:55 -0400 |
|---|---|---|
| committer | Charles Karney <charles.karney@sri.com> | 2019-09-18 07:08:55 -0400 |
| commit | 93d0f53db70b581718f29601df11f4b819ef943e (patch) | |
| tree | b5dc2c1f3af4b2a8350636b75f724eaa95165224 /src/proj_math.h | |
| parent | c080801637b5b3c1fe7462829411a6859ce581dd (diff) | |
| download | PROJ-93d0f53db70b581718f29601df11f4b819ef943e.tar.gz PROJ-93d0f53db70b581718f29601df11f4b819ef943e.zip | |
Try removing C99 math functions from math.cpp (but leave isnan).
Diffstat (limited to 'src/proj_math.h')
| -rw-r--r-- | src/proj_math.h | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/proj_math.h b/src/proj_math.h index 414df805..698654dd 100644 --- a/src/proj_math.h +++ b/src/proj_math.h @@ -61,29 +61,8 @@ extern "C" { #endif #endif -double pj_hypot(double x, double y); -double pj_log1p(double x); -double pj_asinh(double x); -double pj_atanh(double x); -double pj_copysign(double x, double y); -double pj_cbrt(double x); -double pj_remainder(double x, double y); -double pj_remquo(double x, double y, int* n); -double pj_round(double x); -long pj_lround(double x); int PROJ_DLL pj_isnan(double x); -#define hypot pj_hypot -#define log1p pj_log1p -#define asinh pj_asinh -#define atanh pj_atanh -#define copysign pj_copysign -#define cbrt pj_cbrt -#define remainder pj_remainder -#define remquo pj_remquo -#define round pj_round -#define lround pj_lround - #ifdef isnan #undef isnan #endif |
