From 42b32723627919f9a18601be7c029f777629dc97 Mon Sep 17 00:00:00 2001
From: pmai <pmai>
Date: Sun, 25 Jul 2004 18:03:18 +0000
Subject: [PATCH] Fix multiply defined strcasecmp for Darwin, uncovered by the
 recent cleanup of the includes.

---
 lisp/parse.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/parse.c b/lisp/parse.c
index 99d61ef29..7a79c71a0 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.7 2004/07/12 23:44:07 pmai Exp $ */
+/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/parse.c,v 1.8 2004/07/25 18:03:18 pmai Exp $ */
 #include <stdio.h>
 #include <ctype.h>
 #include <signal.h>
@@ -17,7 +17,7 @@
 #include "arch.h"
 #include "search.h"
 
-#if !defined(MACH) && !defined(SVR4) && !defined(__linux__)
+#if !defined(MACH) && !defined(SVR4) && !defined(__linux__) && !defined(DARWIN)
 
 static int strcasecmp(s1,s2)
 char *s1,*s2;
-- 
GitLab