comparison libaf/af.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 72d0b1444141
children 20787bd5c506
comparison
equal deleted inserted replaced
28593:94d9e6403ee4 28594:df67d03dde3b
18 18
19 #include <stdio.h> 19 #include <stdio.h>
20 #include <stdlib.h> 20 #include <stdlib.h>
21 #include <string.h> 21 #include <string.h>
22 22
23 #ifdef HAVE_MALLOC_H 23 #if HAVE_MALLOC_H
24 #include <malloc.h> 24 #include <malloc.h>
25 #endif 25 #endif
26 26
27 #include "af.h" 27 #include "af.h"
28 28