summaryrefslogtreecommitdiffstats
path: root/mp3lib/mpg123.h
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-01-04 14:42:59 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-01-04 14:42:59 +0000
commit30c98f487734928696963064bb7eb610a7072a1d (patch)
treea461955478b256c15c2684705fc2dbaff65e6c58 /mp3lib/mpg123.h
parent0a1e9b2902d623aa616658fd900c5350586c4a0e (diff)
downloadmpv-30c98f487734928696963064bb7eb610a7072a1d.tar.bz2
mpv-30c98f487734928696963064bb7eb610a7072a1d.tar.xz
Add multiple inclusion guards to all mp3lib headers.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30205 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mp3lib/mpg123.h')
-rw-r--r--mp3lib/mpg123.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/mp3lib/mpg123.h b/mp3lib/mpg123.h
index 2cbef31bdd..3af6be278a 100644
--- a/mp3lib/mpg123.h
+++ b/mp3lib/mpg123.h
@@ -9,6 +9,9 @@
* used source: musicout.h from mpegaudio package
*/
+#ifndef MPLAYER_MP3LIB_MPG123_H
+#define MPLAYER_MP3LIB_MPG123_H
+
#include "config.h"
#ifndef M_PI
@@ -126,3 +129,5 @@ void dct36_sse(real *, real *, real *, real *, real *);
typedef int (*synth_func_t)( real *,int,short * );
typedef void (*dct36_func_t)(real *,real *,real *,real *,real *);
+
+#endif /* MPLAYER_MP3LIB_MPG123_H */