Don't #include <memory.h> but #include <string.h> to avoid header clash under MacOS. I don't think this affects other platforms.

This commit is contained in:
Just van Rossum 2000-03-02 01:17:50 +00:00
parent c3b680942c
commit f21dac0209
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
#include "grobjs.h"
#include <stdlib.h>
#include <memory.h>
#include <string.h>
int grError = 0;