diff --git a/lisp/parse.c b/lisp/parse.c index 7a79c71a06c1e19e6d5488d9d13f4c2942098f83..e1ac93f67e76a29140778b48c58040b1066aea7f 100644 --- a/lisp/parse.c +++ b/lisp/parse.c @@ -1,4 +1,4 @@ -/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/parse.c,v 1.8 2004/07/25 18:03:18 pmai Exp $ */ +/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/parse.c,v 1.9 2004/07/30 16:27:08 rtoy Exp $ */ #include <stdio.h> #include <ctype.h> #include <signal.h> @@ -17,7 +17,11 @@ #include "arch.h" #include "search.h" -#if !defined(MACH) && !defined(SVR4) && !defined(__linux__) && !defined(DARWIN) +/* + * What platforms DON'T have strcasecmp nowadays? Enable this if you + * don't have it. + */ +#if 0 static int strcasecmp(s1,s2) char *s1,*s2;