comparison libmpcodecs/vf_screenshot.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 88d793e52bd9
children 67c256364220
comparison
equal deleted inserted replaced
28593:94d9e6403ee4 28594:df67d03dde3b
1 #include "config.h" 1 #include "config.h"
2 2
3 #include <stdio.h> 3 #include <stdio.h>
4 #include <stdlib.h> 4 #include <stdlib.h>
5 #ifdef HAVE_MALLOC_H 5 #if HAVE_MALLOC_H
6 #include <malloc.h> 6 #include <malloc.h>
7 #endif 7 #endif
8 #include <string.h> 8 #include <string.h>
9 #include <inttypes.h> 9 #include <inttypes.h>
10 10