diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2024-04-21 15:46:52 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2024-04-21 15:46:52 -0700 |
commit | 8fa3682c14fc40a06f3af9a462301f39739a26bd (patch) | |
tree | 9ccd742df79644879a098874cd90549663e528cd /lisp/lsp.c | |
parent | 75ad621cfcf3c2591b7b9602bc0934d445153c6a (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.c | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -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]); |