diff 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
line wrap: on
line diff
--- a/libaf/af.c	Tue Feb 17 10:41:13 2009 +0000
+++ b/libaf/af.c	Tue Feb 17 11:16:19 2009 +0000
@@ -20,7 +20,7 @@
 #include <stdlib.h>
 #include <string.h>
 
-#ifdef HAVE_MALLOC_H
+#if HAVE_MALLOC_H
 #include <malloc.h>
 #endif