aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKristian Evers <kristianevers@gmail.com>2018-05-14 11:13:18 +0200
committerGitHub <noreply@github.com>2018-05-14 11:13:18 +0200
commitcc496fa3d0bd9393d0fa266728cac9b9b5342e96 (patch)
tree3a0f8356c555fc54c5f2fe03f2d5e0e9eb1c6cc1 /src
parent03011fb2989c49d938b784683a620409d5ed5779 (diff)
parent74d082a5360b4939fcbc54fb18382b723771cafe (diff)
downloadPROJ-cc496fa3d0bd9393d0fa266728cac9b9b5342e96.tar.gz
PROJ-cc496fa3d0bd9393d0fa266728cac9b9b5342e96.zip
Merge pull request #997 from schwehr/iwyu
Partial changes for IWYU
Diffstat (limited to 'src')
-rw-r--r--src/PJ_axisswap.c3
-rw-r--r--src/PJ_bacon.c8
-rw-r--r--src/PJ_bipc.c6
-rw-r--r--src/PJ_boggs.c8
-rw-r--r--src/PJ_calcofi.c11
-rw-r--r--src/PJ_cart.c4
-rw-r--r--src/PJ_cass.c10
-rw-r--r--src/PJ_cc.c5
-rw-r--r--src/PJ_cea.c5
-rw-r--r--src/PJ_chamb.c5
-rw-r--r--src/PJ_collg.c4
-rw-r--r--src/PJ_comill.c7
12 files changed, 42 insertions, 34 deletions
diff --git a/src/PJ_axisswap.c b/src/PJ_axisswap.c
index 0b81a733..d31e927e 100644
--- a/src/PJ_axisswap.c
+++ b/src/PJ_axisswap.c
@@ -54,6 +54,9 @@ operation:
#define PJ_LIB__
#include <errno.h>
+#include <stdlib.h>
+#include <string.h>
+
#include "proj_internal.h"
#include "projects.h"
diff --git a/src/PJ_bacon.c b/src/PJ_bacon.c
index 4ba70db4..ae25bce1 100644
--- a/src/PJ_bacon.c
+++ b/src/PJ_bacon.c
@@ -1,8 +1,10 @@
# define HLFPI2 2.46740110027233965467 /* (pi/2)^2 */
# define EPS 1e-10
#define PJ_LIB__
-#include <errno.h>
-#include "projects.h"
+#include <errno.h>
+#include <math.h>
+
+#include "projects.h"
struct pj_opaque {
@@ -75,5 +77,3 @@ PJ *PROJECTION(ortel) {
P->fwd = s_forward;
return P;
}
-
-
diff --git a/src/PJ_bipc.c b/src/PJ_bipc.c
index 2f60808d..ea7883a5 100644
--- a/src/PJ_bipc.c
+++ b/src/PJ_bipc.c
@@ -1,6 +1,8 @@
#define PJ_LIB__
-#include "proj.h"
#include <errno.h>
+#include <math.h>
+
+#include "proj.h"
#include "projects.h"
#include "proj_math.h"
@@ -170,5 +172,3 @@ PJ *PROJECTION(bipc) {
P->es = 0.;
return P;
}
-
-
diff --git a/src/PJ_boggs.c b/src/PJ_boggs.c
index ed753505..83bafc18 100644
--- a/src/PJ_boggs.c
+++ b/src/PJ_boggs.c
@@ -1,6 +1,8 @@
#define PJ_LIB__
-# include <errno.h>
-# include "projects.h"
+#include <math.h>
+
+#include "projects.h"
+
PROJ_HEAD(boggs, "Boggs Eumorphic") "\n\tPCyl., no inv., Sph.";
# define NITER 20
# define EPS 1e-7
@@ -39,5 +41,3 @@ PJ *PROJECTION(boggs) {
P->fwd = s_forward;
return P;
}
-
-
diff --git a/src/PJ_calcofi.c b/src/PJ_calcofi.c
index f322d2bd..ed4cfe86 100644
--- a/src/PJ_calcofi.c
+++ b/src/PJ_calcofi.c
@@ -1,15 +1,14 @@
#define PJ_LIB__
+
+#include <math.h>
+
#include "proj.h"
#include "projects.h"
+#include "proj_api.h"
PROJ_HEAD(calcofi,
"Cal Coop Ocean Fish Invest Lines/Stations") "\n\tCyl, Sph&Ell";
-#include <string.h>
-#include <stdio.h>
-#include <math.h>
-#include "proj_api.h"
-#include <errno.h>
/* Conversions for the California Cooperative Oceanic Fisheries Investigations
Line/Station coordinate system following the algorithm of:
@@ -162,5 +161,3 @@ PJ *PROJECTION(calcofi) {
}
return P;
}
-
-
diff --git a/src/PJ_cart.c b/src/PJ_cart.c
index a4fd3254..b4fc60b2 100644
--- a/src/PJ_cart.c
+++ b/src/PJ_cart.c
@@ -41,11 +41,11 @@
*****************************************************************************/
#define PJ_LIB__
+
#include "proj_internal.h"
#include "projects.h"
#include "proj_math.h"
-#include <stddef.h>
-#include <errno.h>
+
PROJ_HEAD(cart, "Geodetic/cartesian conversions");
diff --git a/src/PJ_cass.c b/src/PJ_cass.c
index acf779a1..4e3b4251 100644
--- a/src/PJ_cass.c
+++ b/src/PJ_cass.c
@@ -1,6 +1,10 @@
#define PJ_LIB__
-# include <errno.h>
-# include "projects.h"
+
+#include <errno.h>
+#include <math.h>
+
+#include "projects.h"
+
PROJ_HEAD(cass, "Cassini") "\n\tCyl, Sph&Ell";
@@ -115,5 +119,3 @@ PJ *PROJECTION(cass) {
return P;
}
-
-
diff --git a/src/PJ_cc.c b/src/PJ_cc.c
index 4f41e3e1..152e6e4a 100644
--- a/src/PJ_cc.c
+++ b/src/PJ_cc.c
@@ -1,4 +1,7 @@
#define PJ_LIB__
+
+#include <math.h>
+
#include "proj.h"
#include "projects.h"
@@ -36,5 +39,3 @@ PJ *PROJECTION(cc) {
return P;
}
-
-
diff --git a/src/PJ_cea.c b/src/PJ_cea.c
index e7a33899..e05e524b 100644
--- a/src/PJ_cea.c
+++ b/src/PJ_cea.c
@@ -1,5 +1,8 @@
#define PJ_LIB__
+
#include <errno.h>
+#include <math.h>
+
#include "proj.h"
#include "projects.h"
@@ -96,5 +99,3 @@ PJ *PROJECTION(cea) {
return P;
}
-
-
diff --git a/src/PJ_chamb.c b/src/PJ_chamb.c
index 571bdf10..0d14b95e 100644
--- a/src/PJ_chamb.c
+++ b/src/PJ_chamb.c
@@ -1,5 +1,8 @@
#define PJ_LIB__
+
#include <errno.h>
+#include <math.h>
+
#include "proj.h"
#include "projects.h"
@@ -134,5 +137,3 @@ PJ *PROJECTION(chamb) {
return P;
}
-
-
diff --git a/src/PJ_collg.c b/src/PJ_collg.c
index 3d7f0d80..ef712905 100644
--- a/src/PJ_collg.c
+++ b/src/PJ_collg.c
@@ -1,4 +1,7 @@
#define PJ_LIB__
+
+#include <math.h>
+
#include "proj.h"
#include "projects.h"
@@ -48,4 +51,3 @@ PJ *PROJECTION(collg) {
return P;
}
-
diff --git a/src/PJ_comill.c b/src/PJ_comill.c
index ba0744c6..ce5bb392 100644
--- a/src/PJ_comill.c
+++ b/src/PJ_comill.c
@@ -7,7 +7,10 @@ Port to PROJ.4 by Bojan Savric, 4 April 2016
*/
#define PJ_LIB__
-#include "projects.h"
+
+#include <math.h>
+
+#include "projects.h"
PROJ_HEAD(comill, "Compact Miller") "\n\tCyl., Sph.";
@@ -79,5 +82,3 @@ PJ *PROJECTION(comill) {
return P;
}
-
-