aboutsummaryrefslogtreecommitdiffstats
path: root/missing/strcasecmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'missing/strcasecmp.c')
-rw-r--r--missing/strcasecmp.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/missing/strcasecmp.c b/missing/strcasecmp.c
index fddb8385be..1ce20704c1 100644
--- a/missing/strcasecmp.c
+++ b/missing/strcasecmp.c
@@ -3,8 +3,7 @@
#include <ctype.h>
int
-strcasecmp(p1, p2)
- char *p1, *p2;
+strcasecmp(const char *p1, const char *p2)
{
while (*p1 && *p2) {
if (toupper(*p1) != toupper(*p2))