summaryrefslogtreecommitdiffstats
path: root/strcasecmp.c
diff options
context:
space:
mode:
authorGreg McGary <greg@mcgary.org>1997-04-18 06:34:23 +0000
committerGreg McGary <greg@mcgary.org>1997-04-18 06:34:23 +0000
commitab66bea0c326c2e18866ad37134dc91bf99c514a (patch)
tree54cc06ba3cd8ca1b5e8f72284438c5a2172ec5b6 /strcasecmp.c
parent809b665811bde40439d829d6193b278b26ae00ed (diff)
downloadidutils-ab66bea0c326c2e18866ad37134dc91bf99c514a.tar.gz
idutils-ab66bea0c326c2e18866ad37134dc91bf99c514a.tar.bz2
idutils-ab66bea0c326c2e18866ad37134dc91bf99c514a.zip
imported from mkid-3.0.1r3_0_1
Diffstat (limited to 'strcasecmp.c')
-rw-r--r--strcasecmp.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/strcasecmp.c b/strcasecmp.c
index 8a93ef2..cd038e3 100644
--- a/strcasecmp.c
+++ b/strcasecmp.c
@@ -58,10 +58,9 @@ static unsigned char charmap[] = {
};
int
-strcasecmp(s1, s2)
- char *s1, *s2;
+strcasecmp(char const *s1, char const *s2)
{
- register unsigned char u1, u2;
+ unsigned char u1, u2;
for (;;) {
u1 = (unsigned char) *s1++;