Skip to content
Snippets Groups Projects
Commit 2df7ff23 authored by rtoy's avatar rtoy
Browse files

#ifdef out strcasecmp for everyone.

parent 4afc12e7
No related branches found
No related tags found
No related merge requests found
/* $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 <stdio.h>
#include <ctype.h> #include <ctype.h>
#include <signal.h> #include <signal.h>
...@@ -17,7 +17,11 @@ ...@@ -17,7 +17,11 @@
#include "arch.h" #include "arch.h"
#include "search.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) static int strcasecmp(s1,s2)
char *s1,*s2; char *s1,*s2;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment