diff options
| author | jtc <jtc@NetBSD.org> | 1995-06-15 00:07:11 +0000 |
|---|---|---|
| committer | jtc <jtc@NetBSD.org> | 1995-06-15 00:07:11 +0000 |
| commit | 752ff8fb6caa0804c7087628a4abd895d105e052 (patch) | |
| tree | e15b0c86c0c55adeac53bfef6def62d016fbf3a8 /lib/libc/string/strcasecmp.c | |
| parent | b5f782e810aa16d949b1c64fae69216d83e26666 (diff) | |
don't include <sys/cdefs.h>, it's a 'private' header
Diffstat (limited to 'lib/libc/string/strcasecmp.c')
| -rw-r--r-- | lib/libc/string/strcasecmp.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/libc/string/strcasecmp.c b/lib/libc/string/strcasecmp.c index c1ca10fc311..8e828816e9b 100644 --- a/lib/libc/string/strcasecmp.c +++ b/lib/libc/string/strcasecmp.c @@ -31,14 +31,13 @@ * SUCH DAMAGE. */ -#include <sys/cdefs.h> -#include <string.h> - #if defined(LIBC_SCCS) && !defined(lint) /*static const char sccsid[] = "from: @(#)strcasecmp.c 5.10 (Berkeley) 1/26/91";*/ -static char *rcsid = "$Id: strcasecmp.c,v 1.3 1993/08/26 00:51:45 jtc Exp $"; +static char *rcsid = "$Id: strcasecmp.c,v 1.4 1995/06/15 00:07:37 jtc Exp $"; #endif /* LIBC_SCCS and not lint */ +#include <string.h> + typedef unsigned char u_char; /* |
