summaryrefslogtreecommitdiffstats
path: root/dec_video.c
diff options
context:
space:
mode:
authorpl <pl@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-11-09 02:17:02 +0000
committerpl <pl@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-11-09 02:17:02 +0000
commit0afb7c93318632543a207db4b27c0882ed680435 (patch)
treed54e69da733f4f738f73d5443caf27be0b8f541e /dec_video.c
parent2b1aa3af8629892d1e82808419101b5d64422e33 (diff)
downloadmpv-0afb7c93318632543a207db4b27c0882ed680435.tar.bz2
mpv-0afb7c93318632543a207db4b27c0882ed680435.tar.xz
added missing #include <malloc.h>
#include "config.h" moved as 1st #include since it defines HAVE_foo_h for later conditional inclusions git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2776 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'dec_video.c')
-rw-r--r--dec_video.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/dec_video.c b/dec_video.c
index 2ca90866a3..ddbea1d07e 100644
--- a/dec_video.c
+++ b/dec_video.c
@@ -1,9 +1,13 @@
+#include "config.h"
+
#include <stdio.h>
+#ifdef HAVE_MALLOC_H
+#include <malloc.h>
+#endif
#include <stdlib.h>
#include <unistd.h>
-#include "config.h"
#include "mp_msg.h"
#include "help_mp.h"