* khtml/misc/main_thread_malloc.h: We use functions from <stdlib.h> here in
debug mode, so #include <stdlib.h>.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@10191
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2005-08-14 Darin Adler <darin@apple.com>
+
+ - fixed build of some unit tests
+
+ * khtml/misc/main_thread_malloc.h: We use functions from <stdlib.h> here in
+ debug mode, so #include <stdlib.h>.
+
2005-08-14 Darin Adler <darin@apple.com>
Reviewed by Maciej.
// while holding the collector lock (this is true whenenever the interpreter is
// executing or GC is taking place).
+#ifndef NDEBUG
+#include <stdlib.h>
+#endif
+
namespace khtml {
#ifndef NDEBUG
#endif
-};
+}
#endif /* KHTMLMAINTTHREADMALLOC_H */