1
mirror of https://github.com/mpv-player/mpv synced 2025-01-16 22:37:28 +01:00

Use quotes instead of angular brackets for local includes.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26374 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2008-04-09 18:02:05 +00:00
parent 0ce6d08a83
commit 6ae33bc013
4 changed files with 5 additions and 5 deletions

View File

@ -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 */

View File

@ -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 */

View File

@ -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

View File

@ -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