diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2001-10-13 16:34:08 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2001-10-13 16:34:08 +0000 |
commit | 58dc94abac79bef5ccef76ccb7036db8dd56ecf6 (patch) | |
tree | 59253547677c662fe88b8422646c2cd3b1fcb617 | |
parent | f42b88d1b4c967702f811479dff885de663dee85 (diff) | |
download | postgresql-58dc94abac79bef5ccef76ccb7036db8dd56ecf6.tar.gz postgresql-58dc94abac79bef5ccef76ccb7036db8dd56ecf6.zip |
Add missing prototype to suppress gcc warning.
-rw-r--r-- | src/include/utils/builtins.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h index e9b52e7cb47..12792f15288 100644 --- a/src/include/utils/builtins.h +++ b/src/include/utils/builtins.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: builtins.h,v 1.166 2001/10/08 19:55:07 tgl Exp $ + * $Id: builtins.h,v 1.167 2001/10/13 16:34:08 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -588,6 +588,7 @@ extern Datum RI_FKey_setdefault_upd(PG_FUNCTION_ARGS); */ extern Datum getdatabaseencoding(PG_FUNCTION_ARGS); extern Datum database_character_set(PG_FUNCTION_ARGS); +extern Datum pg_client_encoding(PG_FUNCTION_ARGS); extern Datum PG_encoding_to_char(PG_FUNCTION_ARGS); extern Datum PG_char_to_encoding(PG_FUNCTION_ARGS); extern Datum PG_character_set_name(PG_FUNCTION_ARGS); |