summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-12-02 11:09:01 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-12-02 11:09:01 +0000
commitdf1a4c9f202b554aa1c6bb49fab3d921eaf48195 (patch)
tree4686e977b5ed4d710968757f601409120ea21bd2
parentbc55a3fb67c8150e9cdde42594f361122be76bad (diff)
downloadmpv-df1a4c9f202b554aa1c6bb49fab3d921eaf48195.tar.bz2
mpv-df1a4c9f202b554aa1c6bb49fab3d921eaf48195.tar.xz
Move system headers before libavutil headers to work around build issues on
Mac OS X, redefining always_inline causes problems. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21434 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r--stream/stream_cdda.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/stream/stream_cdda.c b/stream/stream_cdda.c
index 8333acc618..3eb08d4350 100644
--- a/stream/stream_cdda.c
+++ b/stream/stream_cdda.c
@@ -1,13 +1,13 @@
#include "config.h"
+#include <stdio.h>
+#include <stdlib.h>
+
#include "stream.h"
#include "m_option.h"
#include "m_struct.h"
#include "libavutil/common.h"
#include "libavutil/bswap.h"
-
-#include <stdio.h>
-#include <stdlib.h>
#include "libmpdemux/demuxer.h"
#include "cdd.h"