summaryrefslogtreecommitdiff
path: root/src/bin/psql/common.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/psql/common.c')
-rw-r--r--src/bin/psql/common.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/src/bin/psql/common.c b/src/bin/psql/common.c
index 0feec434e20..4000c4ddd8e 100644
--- a/src/bin/psql/common.c
+++ b/src/bin/psql/common.c
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2005, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/psql/common.c,v 1.97 2005/04/28 13:09:59 momjian Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/common.c,v 1.98 2005/05/30 18:28:11 momjian Exp $
*/
#include "postgres_fe.h"
#include "common.h"
@@ -1237,17 +1237,6 @@ command_no_begin(const char *query)
}
-char
-parse_char(char **buf)
-{
- long l;
-
- l = strtol(*buf, buf, 0);
- --*buf;
- return (char) l;
-}
-
-
/*
* Test if the current user is a database superuser.
*