diff options
author | Pierre Lombard <p_l@gmx.fr> | 2001-11-09 02:17:02 +0000 |
---|---|---|
committer | Pierre Lombard <p_l@gmx.fr> | 2001-11-09 02:17:02 +0000 |
commit | 6c426cff79d109fb1f22054f2a8cbe5532437f58 (patch) | |
tree | c406e8ae809bac6314aed6df8781f6361f70a588 | |
parent | 9395185f9e375538c064290769b1537438b0e1c8 (diff) | |
download | ffmpeg-6c426cff79d109fb1f22054f2a8cbe5532437f58.tar.gz |
added missing #include <malloc.h>
#include "config.h" moved as 1st #include since it defines HAVE_foo_h for
later conditional inclusions
Originally committed as revision 2776 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
-rw-r--r-- | postproc/postprocess.c | 2 | ||||
-rw-r--r-- | postproc/postprocess_template.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/postproc/postprocess.c b/postproc/postprocess.c index 902a6298e5..7ea6b35b95 100644 --- a/postproc/postprocess.c +++ b/postproc/postprocess.c @@ -70,11 +70,11 @@ Notes: //Changelog: use the CVS log +#include "../config.h" #include <inttypes.h> #include <stdio.h> #include <stdlib.h> #include <string.h> -#include "../config.h" #ifdef HAVE_MALLOC_H #include <malloc.h> #endif diff --git a/postproc/postprocess_template.c b/postproc/postprocess_template.c index 902a6298e5..7ea6b35b95 100644 --- a/postproc/postprocess_template.c +++ b/postproc/postprocess_template.c @@ -70,11 +70,11 @@ Notes: //Changelog: use the CVS log +#include "../config.h" #include <inttypes.h> #include <stdio.h> #include <stdlib.h> #include <string.h> -#include "../config.h" #ifdef HAVE_MALLOC_H #include <malloc.h> #endif |