diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2001-07-09 23:30:07 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2001-07-09 23:30:07 +0000 |
| commit | 61f65fcaf0903f6b2bc6c68b1ddcf62f8dea0f45 (patch) | |
| tree | 4e24b3c8a20bbbc9913a9aed5144efb1dd03d207 /lib/libc/string/strcasecmp.c | |
| parent | 3ec2778cf7ee2c8351e6210cf45a653ed4aeccb5 (diff) | |
Notes
Diffstat (limited to 'lib/libc/string/strcasecmp.c')
| -rw-r--r-- | lib/libc/string/strcasecmp.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/lib/libc/string/strcasecmp.c b/lib/libc/string/strcasecmp.c index 463c4dee3c25..f1d4f38d6961 100644 --- a/lib/libc/string/strcasecmp.c +++ b/lib/libc/string/strcasecmp.c @@ -31,13 +31,17 @@ * SUCH DAMAGE. */ -#include <sys/cdefs.h> -#include <string.h> -#include <ctype.h> - #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)strcasecmp.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ +#ifndef lint +static const char rcsid[] = + "$FreeBSD$"; +#endif + +#include <sys/cdefs.h> +#include <string.h> +#include <ctype.h> typedef unsigned char u_char; |
