comparison libmpdemux/video.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 4ac70bd6acac
children d643e4643313
comparison
equal deleted inserted replaced
28593:94d9e6403ee4 28594:df67d03dde3b
1 // read video frame 1 // read video frame
2 2
3 #include "config.h" 3 #include "config.h"
4 4
5 #include <stdio.h> 5 #include <stdio.h>
6 #ifdef HAVE_MALLOC_H 6 #if HAVE_MALLOC_H
7 #include <malloc.h> 7 #include <malloc.h>
8 #endif 8 #endif
9 #include <stdlib.h> 9 #include <stdlib.h>
10 #include <string.h> 10 #include <string.h>
11 #include <unistd.h> 11 #include <unistd.h>