summaryrefslogtreecommitdiff
path: root/src/port/strcasecmp.c
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2003-11-11 23:52:45 +0000
committerBruce Momjian <bruce@momjian.us>2003-11-11 23:52:45 +0000
commit018cf0f76e80cf61df9e84d02edd94037361d9b7 (patch)
tree89dd7d50471ff4ec65e07b5004f40ba3241b4511 /src/port/strcasecmp.c
parent0a2c82b5f73cc2d7f1a5963b6d320cbe57dd10d1 (diff)
Update /port C header descriptions.
Diffstat (limited to 'src/port/strcasecmp.c')
-rw-r--r--src/port/strcasecmp.c8
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',