diff options
| author | Thomas Knudsen <busstoptaktik@users.noreply.github.com> | 2018-03-11 13:17:07 +0100 |
|---|---|---|
| committer | Kristian Evers <kristianevers@gmail.com> | 2018-03-11 13:17:07 +0100 |
| commit | ab87b8ef0af7ef888b7d810db610ead6eb784d71 (patch) | |
| tree | 137410ff9bed2880ea5456619c703e151490a02f /src/nad_init.c | |
| parent | 665e9b60b4df97e17f82f036db0f6eecf87894b2 (diff) | |
| download | PROJ-ab87b8ef0af7ef888b7d810db610ead6eb784d71.tar.gz PROJ-ab87b8ef0af7ef888b7d810db610ead6eb784d71.zip | |
Remove angle brackets for proj headers (#849)
* Avoid using angle brackets for PROJ headers.
Switching from #include <proj.h> to #include "proj.h",
and correspondingly for projects.h and proj_api.h,
reduces the risk of accidentally picking up a system
installed older version of the header while building
a new version of PROJ.
* Also handle geodesic.h
Diffstat (limited to 'src/nad_init.c')
| -rw-r--r-- | src/nad_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nad_init.c b/src/nad_init.c index 04177a44..c64c474b 100644 --- a/src/nad_init.c +++ b/src/nad_init.c @@ -27,7 +27,7 @@ #define PJ_LIB__ -#include <projects.h> +#include "projects.h" #include <stdio.h> #include <errno.h> #include <string.h> |
