aboutsummaryrefslogtreecommitdiff
path: root/src/projections/times.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/projections/times.cpp')
-rw-r--r--src/projections/times.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/projections/times.cpp b/src/projections/times.cpp
index 4a0d0f59..21c6c19a 100644
--- a/src/projections/times.cpp
+++ b/src/projections/times.cpp
@@ -38,7 +38,7 @@
PROJ_HEAD(times, "Times") "\n\tCyl, Sph";
-static PJ_XY s_forward (PJ_LP lp, PJ *P) { /* Spheroidal, forward */
+static PJ_XY times_s_forward (PJ_LP lp, PJ *P) { /* Spheroidal, forward */
double T, S, S2;
PJ_XY xy = {0.0,0.0};
(void) P;
@@ -54,7 +54,7 @@ static PJ_XY s_forward (PJ_LP lp, PJ *P) { /* Spheroidal, forward */
}
-static PJ_LP s_inverse (PJ_XY xy, PJ *P) { /* Spheroidal, inverse */
+static PJ_LP times_s_inverse (PJ_XY xy, PJ *P) { /* Spheroidal, inverse */
double T, S, S2;
PJ_LP lp = {0.0,0.0};
(void) P;
@@ -73,8 +73,8 @@ static PJ_LP s_inverse (PJ_XY xy, PJ *P) { /* Spheroidal, inverse */
PJ *PROJECTION(times) {
P->es = 0.0;
- P->inv = s_inverse;
- P->fwd = s_forward;
+ P->inv = times_s_inverse;
+ P->fwd = times_s_forward;
return P;
}