summaryrefslogtreecommitdiff
path: root/src/bin/psql/stringutils.h
diff options
context:
space:
mode:
authorBryan Henderson <bryanh@giraffe.netgate.net>1996-11-26 03:20:35 +0000
committerBryan Henderson <bryanh@giraffe.netgate.net>1996-11-26 03:20:35 +0000
commit46d58fba3309d435bca93b1706603d1bab5a0512 (patch)
treed62f05b82b87ea98d9f2cb9fc56c390ad0a449c5 /src/bin/psql/stringutils.h
parent02c0eb65490c3f5068cdc4839ef516278b8deacc (diff)
downloadpostgresql-46d58fba3309d435bca93b1706603d1bab5a0512.tar.gz
Make it compile on Ultrix. Thanks Erik Bertelson.
Diffstat (limited to 'src/bin/psql/stringutils.h')
-rw-r--r--src/bin/psql/stringutils.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/bin/psql/stringutils.h b/src/bin/psql/stringutils.h
index f5140469d6..11da94449e 100644
--- a/src/bin/psql/stringutils.h
+++ b/src/bin/psql/stringutils.h
@@ -5,7 +5,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: stringutils.h,v 1.2 1996/07/28 07:08:15 scrappy Exp $
+ * $Id: stringutils.h,v 1.3 1996/11/26 03:20:08 bryanh Exp $
*
*-------------------------------------------------------------------------
*/
@@ -31,11 +31,6 @@ extern char *leftTrim(char *s);
extern char *rightTrim(char *s);
extern char *doubleTrim(char *s);
-/* dupstr : copies a string, while making room for it */
-/* the CALLER is responsible for freeing the space */
-/* returns NULL if the argument is NULL */
-extern char *dupstr(char *s);
-
#ifdef STRINGUTILS_TEST
extern void testStringUtils();
#endif