aboutsummaryrefslogtreecommitdiff
path: root/src/PJ_geoc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/PJ_geoc.c')
-rw-r--r--src/PJ_geoc.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/PJ_geoc.c b/src/PJ_geoc.c
index bed0db49..0455fada 100644
--- a/src/PJ_geoc.c
+++ b/src/PJ_geoc.c
@@ -31,18 +31,19 @@
#include <math.h>
#include "proj.h"
+#include "proj_internal.h"
#include "projects.h"
PROJ_HEAD(geoc, "Geocentric Latitude");
/* Geographical to geocentric */
static PJ_COORD forward(PJ_COORD coo, PJ *P) {
- return proj_geocentric_latitude (P, PJ_FWD, coo);
+ return pj_geocentric_latitude (P, PJ_FWD, coo);
}
/* Geocentric to geographical */
static PJ_COORD inverse(PJ_COORD coo, PJ *P) {
- return proj_geocentric_latitude (P, PJ_INV, coo);
+ return pj_geocentric_latitude (P, PJ_INV, coo);
}