diff options
Diffstat (limited to 'src/port/strcasecmp.c')
-rw-r--r-- | src/port/strcasecmp.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/port/strcasecmp.c b/src/port/strcasecmp.c index c0b4409d734..e40dc915a9d 100644 --- a/src/port/strcasecmp.c +++ b/src/port/strcasecmp.c @@ -1,4 +1,4 @@ -/* $Id: strcasecmp.c,v 1.2 2003/08/04 02:40:20 momjian Exp $ */ +/* $Id: strcasecmp.c,v 1.3 2003/11/11 23:52:45 momjian Exp $ */ /* * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group @@ -13,17 +13,13 @@ * is provided ``as is'' without express or implied warranty. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)strcasecmp.c 5.5 (Berkeley) 11/24/87"; -#endif /* LIBC_SCCS and not lint */ - #include <sys/types.h> #include <string.h> /* * This array is designed for mapping upper and lower case letter * together for a case independent comparison. The mappings are -p * based upon ascii character sequences. + * based upon ascii character sequences. */ static unsigned char charmap[] = { '\000', '\001', '\002', '\003', '\004', '\005', '\006', '\007', |