aboutsummaryrefslogtreecommitdiff
path: root/src/PJ_horner.c
diff options
context:
space:
mode:
authorKurt Schwehr <schwehr@google.com>2018-05-15 07:25:25 -0700
committerKurt Schwehr <schwehr@google.com>2018-05-15 07:25:25 -0700
commit4080bd2477c76a528394e752ee7796fdf87db07e (patch)
tree572a2aaa67849ca5bbcb6799acebe98844fa3700 /src/PJ_horner.c
parent4e65a0f810b7e17b5eeb21b2ff04a91915808d23 (diff)
downloadPROJ-4080bd2477c76a528394e752ee7796fdf87db07e.tar.gz
PROJ-4080bd2477c76a528394e752ee7796fdf87db07e.zip
IWYU: Partial PJ_gstmerc.c..PJ_molodensky.c
Diffstat (limited to 'src/PJ_horner.c')
-rw-r--r--src/PJ_horner.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/PJ_horner.c b/src/PJ_horner.c
index 24e1cbe9..50e13850 100644
--- a/src/PJ_horner.c
+++ b/src/PJ_horner.c
@@ -76,13 +76,17 @@
*****************************************************************************/
#define PJ_LIB__
+
+#include <errno.h>
+#include <math.h>
+#include <stddef.h>
+#include <stdio.h>
+#include <string.h>
+
#include "proj_internal.h"
#include "projects.h"
-#include <stddef.h>
-#include <math.h>
-#include <errno.h>
-PROJ_HEAD(horner, "Horner polynomial evaluation");
+PROJ_HEAD(horner, "Horner polynomial evaluation");
/* make horner.h interface with proj's memory management */
#define horner_dealloc(x) pj_dealloc(x)
@@ -503,4 +507,3 @@ PJ *PROJECTION(horner) {
return P;
}
-