ref: f21dac0209802bd86c1e0f3448b67f94658472d7
parent: c3b680942cf5f7974b45a2fb54e765178185733e
author: Just van Rossum <[email protected]>
date: Wed Mar 1 20:17:50 EST 2000
Don't #include <memory.h> but #include <string.h> to avoid header clash under MacOS. I don't think this affects other platforms.
--- a/demos/graph/grobjs.c
+++ b/demos/graph/grobjs.c
@@ -1,6 +1,6 @@
#include "grobjs.h"
#include <stdlib.h>
-#include <memory.h>
+#include <string.h>
int grError = 0;