aboutsummaryrefslogtreecommitdiff
path: root/src/pj_mutex.c
diff options
context:
space:
mode:
authorThomas Knudsen <busstoptaktik@users.noreply.github.com>2018-03-11 13:17:07 +0100
committerKristian Evers <kristianevers@gmail.com>2018-03-11 13:17:07 +0100
commitab87b8ef0af7ef888b7d810db610ead6eb784d71 (patch)
tree137410ff9bed2880ea5456619c703e151490a02f /src/pj_mutex.c
parent665e9b60b4df97e17f82f036db0f6eecf87894b2 (diff)
downloadPROJ-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/pj_mutex.c')
-rw-r--r--src/pj_mutex.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pj_mutex.c b/src/pj_mutex.c
index 2bcf31a7..e06aa945 100644
--- a/src/pj_mutex.c
+++ b/src/pj_mutex.c
@@ -36,9 +36,9 @@
#ifndef _WIN32
#include "proj_config.h"
-#include <projects.h>
+#include "projects.h"
#else
-#include <proj_api.h>
+#include "proj_api.h"
#endif
/* on win32 we always use win32 mutexes, even if pthreads are available */