aboutsummaryrefslogtreecommitdiff
path: root/src/PJ_horner.c
diff options
context:
space:
mode:
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;
}
-