diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2000-01-14 01:36:42 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2000-01-14 01:36:42 +0000 |
commit | 6256fcb9272c93da900afe9766192e49ca42aaf0 (patch) | |
tree | ae78a40295a1aa44c14f80a19b1f85f674fe4b82 | |
parent | bb7e85fb850097124f586c192f4afbf5cdcdda6e (diff) | |
download | postgresql-6256fcb9272c93da900afe9766192e49ca42aaf0.tar.gz postgresql-6256fcb9272c93da900afe9766192e49ca42aaf0.zip |
Remove redundant and now-incorrect declaration of pstrdup.
-rw-r--r-- | src/pl/plpgsql/src/plpgsql.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/pl/plpgsql/src/plpgsql.h b/src/pl/plpgsql/src/plpgsql.h index 4b82abdc3ec..e14fd47ecd7 100644 --- a/src/pl/plpgsql/src/plpgsql.h +++ b/src/pl/plpgsql/src/plpgsql.h @@ -3,7 +3,7 @@ * procedural language * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/pl/plpgsql/src/plpgsql.h,v 1.5 2000/01/10 17:14:45 momjian Exp $ + * $Header: /cvsroot/pgsql/src/pl/plpgsql/src/plpgsql.h,v 1.6 2000/01/14 01:36:42 tgl Exp $ * * This software is copyrighted by Jan Wieck - Hamburg. * @@ -434,10 +434,6 @@ extern PLpgSQL_function *plpgsql_curr_compile; * Function declarations **********************************************************************/ - -extern char *pstrdup(char *s); - - /* ---------- * Functions in pl_comp.c * ---------- |