comparison libmpcodecs/vf_il.c @ 29087:290420c32921

Remove unnecessary malloc.h #includes and related #ifdeffery.
author diego
date Thu, 02 Apr 2009 09:20:48 +0000
parents df67d03dde3b
children 0f1b5b68af32
comparison
equal deleted inserted replaced
29086:b5c25fd3cf8f 29087:290420c32921
22 #include <stdlib.h> 22 #include <stdlib.h>
23 #include <string.h> 23 #include <string.h>
24 #include <inttypes.h> 24 #include <inttypes.h>
25 #include <assert.h> 25 #include <assert.h>
26 26
27 #include "config.h"
28 #include "mp_msg.h" 27 #include "mp_msg.h"
29
30 #if HAVE_MALLOC_H
31 #include <malloc.h>
32 #endif
33
34 #include "img_format.h" 28 #include "img_format.h"
35 #include "mp_image.h" 29 #include "mp_image.h"
36 #include "vf.h" 30 #include "vf.h"
37 #include "libvo/fastmemcpy.h" 31 #include "libvo/fastmemcpy.h"
38 32