aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Karney <charles@karney.com>2017-12-06 16:41:34 -0500
committerCharles Karney <charles@karney.com>2017-12-06 16:41:34 -0500
commitcbb497636ec29f5350864b128e7d09d603f6a15d (patch)
treeee74f39bede190f76c91ab5c1f08bdb40f699e18
parent86b96ccb8c926f831451c3e6d364319a0d833522 (diff)
downloadPROJ-cbb497636ec29f5350864b128e7d09d603f6a15d.tar.gz
PROJ-cbb497636ec29f5350864b128e7d09d603f6a15d.zip
CMakeLists.txt: fix typo, copysigna -> copysign.
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index f6147c3e..a9c9cdbf 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -84,7 +84,7 @@ int main() {
int q;
return (int)(hypot(3.0, 4.0) + atanh(0.8) + cbrt(8.0) +
remquo(100.0, 90.0, &q) +
- remainder(100.0, 90.0) + copysigna(1.0, -0.0));
+ remainder(100.0, 90.0) + copysign(1.0, -0.0));
}\n" C99_MATH)
if (C99_MATH)
add_definitions (-DHAVE_C99_MATH=1)