Removed malloc.h includes. This is not a standard header and does not exist on
authorthurston <thurston@052ea7fc-9027-0410-9066-f65837a77df0>
Fri, 30 Mar 2007 16:48:47 +0000 (16:48 +0000)
committerthurston <thurston@052ea7fc-9027-0410-9066-f65837a77df0>
Fri, 30 Mar 2007 16:48:47 +0000 (16:48 +0000)
OSX. Use stdlib.h instead.

git-svn-id: http://svn.complang.org/ragel/trunk@160 052ea7fc-9027-0410-9066-f65837a77df0

CREDITS
ragel/rlparse.kl
redfsm/xmlparse.kl

diff --git a/CREDITS b/CREDITS
index ac6f303..d537a7e 100644 (file)
--- a/CREDITS
+++ b/CREDITS
@@ -26,4 +26,4 @@ have been missed.
     Erich Ocean, Alan West, Steven Kibbler, Laurent Boulard, Jon Oberheide,
     David Helder, Lexington Luthor, Jason Jobe, Colin Fleming, Carlos Antunes,
     Steve Horne, Matt Mower, Josef Goettgens, Zed Shaw, Marcus Rueckert, Jeremy
-    Hinegardner
+    Hinegardner, Aaron Campbell
index 95fb782..86bbe58 100644 (file)
@@ -23,7 +23,7 @@
 #include "ragel.h"
 #include <iostream>
 #include <errno.h>
-#include <malloc.h>
+#include <stdlib.h>
 
 using std::cout;
 using std::cerr;
index 4df9cb1..11c42e1 100644 (file)
@@ -23,7 +23,7 @@
 #include "common.h"
 #include "gendata.h"
 #include <iostream>
-#include <malloc.h>
+#include <stdlib.h>
 
 using std::cout;
 using std::ostream;