aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2015-03-07 21:01:48 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2015-03-07 21:01:48 +0000
commit236ee3c0e754c7fe7778f3ad64046521695941a3 (patch)
tree43f1e6f1ce8cd40d516d7958ca24343136eed799 /src
parent4a2131c75b2131d81a8909c03d3dbe54c24e897d (diff)
use <> rather than "" to include std-headers
svn path=/trunk/externals/iem/iemmatrix/; revision=17441
Diffstat (limited to 'src')
-rw-r--r--src/iemmatrix.h2
-rw-r--r--src/mtx_bessel.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/iemmatrix.h b/src/iemmatrix.h
index 43dd297..dc02288 100644
--- a/src/iemmatrix.h
+++ b/src/iemmatrix.h
@@ -51,7 +51,7 @@
#endif /* __WIN32__ */
-#include "m_pd.h"
+#include <m_pd.h>
#ifndef M_PI
diff --git a/src/mtx_bessel.c b/src/mtx_bessel.c
index 458100c..e2c3e08 100644
--- a/src/mtx_bessel.c
+++ b/src/mtx_bessel.c
@@ -14,7 +14,7 @@
*/
#include "iemmatrix.h"
-#include "math.h"
+#include <math.h>
#include <stdlib.h>
#ifdef HAVE_GSL_BESSEL
#include <gsl/gsl_sf_bessel.h>