aboutsummaryrefslogtreecommitdiff
path: root/libiberty/strcasecmp.c
diff options
context:
space:
mode:
authorDJ Delorie <dj@redhat.com>2005-03-28 05:07:08 +0000
committerDJ Delorie <dj@redhat.com>2005-03-28 05:07:08 +0000
commit1e45deed6a87c05c9e669e3cdfdda47cbfa9531d (patch)
treee2c1bba3c03c5917c8e70792a921dfc6b6b5eef9 /libiberty/strcasecmp.c
parent49b1fae4309ab5b9833f0af388483c2b6b4b3d50 (diff)
downloadbinutils-1e45deed6a87c05c9e669e3cdfdda47cbfa9531d.zip
binutils-1e45deed6a87c05c9e669e3cdfdda47cbfa9531d.tar.gz
binutils-1e45deed6a87c05c9e669e3cdfdda47cbfa9531d.tar.bz2
merge from gcc
Diffstat (limited to 'libiberty/strcasecmp.c')
-rw-r--r--libiberty/strcasecmp.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/libiberty/strcasecmp.c b/libiberty/strcasecmp.c
index d2608dc..131d81c 100644
--- a/libiberty/strcasecmp.c
+++ b/libiberty/strcasecmp.c
@@ -25,11 +25,7 @@ static char sccsid[] = "@(#)strcasecmp.c 5.5 (Berkeley) 11/24/87";
#endif /* LIBC_SCCS and not lint */
#include <ansidecl.h>
-#ifdef ANSI_PROTOTYPES
#include <stddef.h>
-#else
-#define size_t unsigned long
-#endif
/*
* This array is designed for mapping upper and lower case letter
@@ -73,8 +69,7 @@ static const unsigned char charmap[] = {
};
int
-strcasecmp(s1, s2)
- const char *s1, *s2;
+strcasecmp(const char *s1, const char *s2)
{
register unsigned char u1, u2;