changeset 26342:327b7955381f

Use quotes instead of angular brackets for local includes.
author diego
date Wed, 09 Apr 2008 18:02:05 +0000
parents 8fadd02c498c
children 1b73f5aa1796
files libaf/af_tools.c libaf/dsp.h libaf/filter.h libaf/window.h
diffstat 4 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/libaf/af_tools.c	Wed Apr 09 17:23:59 2008 +0000
+++ b/libaf/af_tools.c	Wed Apr 09 18:02:05 2008 +0000
@@ -1,6 +1,6 @@
 #include <math.h>
 #include <string.h> 
-#include <af.h>
+#include "af.h"
 
 /* Convert to gain value from dB. Returns AF_OK if of and AF_ERROR if
    fail */
--- a/libaf/dsp.h	Wed Apr 09 17:23:59 2008 +0000
+++ b/libaf/dsp.h	Wed Apr 09 18:02:05 2008 +0000
@@ -16,7 +16,7 @@
 /* Size of floating point type used in routines */
 #define _ftype_t float
 
-#include <window.h>
-#include <filter.h>
+#include "window.h"
+#include "filter.h"
 
 #endif /* MPLAYER_DSP_H */
--- a/libaf/filter.h	Wed Apr 09 17:23:59 2008 +0000
+++ b/libaf/filter.h	Wed Apr 09 18:02:05 2008 +0000
@@ -9,7 +9,7 @@
 */
 
 #if !defined MPLAYER_DSP_H
-# error "Never use <filter.h> directly; include <dsp.h> instead"
+# error "Never use \"filter.h\" directly; include \"dsp.h\" instead"
 #endif
 
 #ifndef MPLAYER_FILTER_H
--- a/libaf/window.h	Wed Apr 09 17:23:59 2008 +0000
+++ b/libaf/window.h	Wed Apr 09 18:02:05 2008 +0000
@@ -16,7 +16,7 @@
 */
 
 #if !defined MPLAYER_DSP_H
-# error "Never use <window.h> directly; include <dsp.h> instead"
+# error "Never use \"window.h\" directly; include \"dsp.h\" instead"
 #endif
 
 #ifndef MPLAYER_WINDOW_H