blob: cfd92798b3cdb40c979341794a0bba94b26297db (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--- cxxlib.cc.orig Fri Aug 11 23:14:55 2000
+++ cxxlib.cc Sat Aug 12 05:33:05 2000
@@ -19,7 +19,11 @@
*/
#include "cxxlib.h"
+#ifdef HAVE_MALLOC_H
#include <malloc.h>
+#else
+#include <stdlib.h>
+#endif
#include <unistd.h>
extern char progName[];
|