diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2000-10-26 17:31:35 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2000-10-26 17:31:35 +0000 |
commit | 8cbda7cbd0971694feb168ad4c37de0ce00f91d0 (patch) | |
tree | f44a1b604541e57e5bf51c466e775d08e0f885b7 /src/include/commands/variable.h | |
parent | 62cc75c8fd31c5ea738ddc241f6f773b9214966f (diff) |
Fix breakage I introduced yesterday in MULTIBYTE compilations.
Sorry 'bout that, chief...
Diffstat (limited to 'src/include/commands/variable.h')
-rw-r--r-- | src/include/commands/variable.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/commands/variable.h b/src/include/commands/variable.h index 87334dda4d4..c1e9541e5a8 100644 --- a/src/include/commands/variable.h +++ b/src/include/commands/variable.h @@ -2,7 +2,7 @@ * Headers for handling of 'SET var TO', 'SHOW var' and 'RESET var' * statements * - * $Id: variable.h,v 1.12 2000/06/22 22:31:23 petere Exp $ + * $Id: variable.h,v 1.13 2000/10/26 17:31:33 tgl Exp $ * */ #ifndef VARIABLE_H @@ -13,5 +13,6 @@ extern void GetPGVariable(const char *name); extern void ResetPGVariable(const char *name); extern void set_default_datestyle(void); +extern void set_default_client_encoding(void); #endif /* VARIABLE_H */ |