comparison libmpcodecs/mp_image.c @ 28594:df67d03dde3b

Convert HAVE_MALLOC_H into a 0/1 definition, fixes the warning: mem.c:32:5: warning: "HAVE_MALLOC_H" is not defined
author diego
date Tue, 17 Feb 2009 11:16:19 +0000
parents 8572d2ef5263
children 0f1b5b68af32
comparison
equal deleted inserted replaced
28593:94d9e6403ee4 28594:df67d03dde3b
3 3
4 #include <stdio.h> 4 #include <stdio.h>
5 #include <stdlib.h> 5 #include <stdlib.h>
6 #include <string.h> 6 #include <string.h>
7 7
8 #ifdef HAVE_MALLOC_H 8 #if HAVE_MALLOC_H
9 #include <malloc.h> 9 #include <malloc.h>
10 #endif 10 #endif
11 11
12 #include "libmpcodecs/img_format.h" 12 #include "libmpcodecs/img_format.h"
13 #include "libmpcodecs/mp_image.h" 13 #include "libmpcodecs/mp_image.h"