summaryrefslogtreecommitdiff
path: root/lisp/lsp.c
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2024-04-21 15:46:52 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2024-04-21 15:46:52 -0700
commit8fa3682c14fc40a06f3af9a462301f39739a26bd (patch)
tree9ccd742df79644879a098874cd90549663e528cd /lisp/lsp.c
parent75ad621cfcf3c2591b7b9602bc0934d445153c6a (diff)
Assume all target platforms have strcasecmp() now
It's a standard part of Unix98/SUSv2 and later Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Part-of: <https://gitlab.freedesktop.org/xorg/app/xedit/-/merge_requests/10>
Diffstat (limited to 'lisp/lsp.c')
-rw-r--r--lisp/lsp.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/lisp/lsp.c b/lisp/lsp.c
index a945cba..5c8f6fb 100644
--- a/lisp/lsp.c
+++ b/lisp/lsp.c
@@ -33,10 +33,6 @@
#include <string.h>
#include "lisp/lisp.h"
-#ifdef NEED_STRCASECMP
-int strcasecmp(const char *s1, const char *s2);
-int strncasecmp(const char *s1, const char *s2, size_t n);
-#endif
#ifdef NEED_REALPATH
#include <sys/param.h>
char *realpath(const char *pathname, char resolvedname[MAXPATHLEN]);