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
This commit is contained in:
Pierre Lombard 2001-11-09 02:17:02 +00:00
parent 9395185f9e
commit 6c426cff79
2 changed files with 2 additions and 2 deletions

View File

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

View File

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