-
Type:
Bug
-
Status: Resolved
-
Resolution: Fixed
-
Affects Version/s: 1.5
-
Fix Version/s: None
-
Component/s: XPathC
-
Labels:None
-
Environment:Operating System: All
Platform: All
-
Bugzilla Id:21268
SimpleXPathCAPI still includes malloc.h which is deprecated and already
results in #error on newver versions of OSes.
Please commit following patch:
— samples/SimpleXPathCAPI/SimpleXPathCAPI.c.Dist Wed Jul 2 10:47:38 2003
+++ samples/SimpleXPathCAPI/SimpleXPathCAPI.c Wed Jul 2 10:47:38 2003
@@ -3,7 +3,7 @@
#include <assert.h>
-#include <malloc.h>
+#include <stdlib.h>
#include <stdio.h>