aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTatsuo Ishii <ishii@postgresql.org>2000-01-19 01:33:16 +0000
committerTatsuo Ishii <ishii@postgresql.org>2000-01-19 01:33:16 +0000
commit8ff9f85bd5cbd2b46fd60269282386d4ee6983d2 (patch)
treea5087ac7193c88bf47f0389ddb959e59383a4b6d /src
parentf565cf41ab8d71df0f4bece5443679d249258b17 (diff)
downloadpostgresql-8ff9f85bd5cbd2b46fd60269282386d4ee6983d2.tar.gz
postgresql-8ff9f85bd5cbd2b46fd60269282386d4ee6983d2.zip
Fix for multibyte support. Since some function declarations
moved to miscadmin.h, we have to include it now.
Diffstat (limited to 'src')
-rw-r--r--src/interfaces/libpq/fe-print.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/interfaces/libpq/fe-print.c b/src/interfaces/libpq/fe-print.c
index 7a73a8669b8..fe476809f89 100644
--- a/src/interfaces/libpq/fe-print.c
+++ b/src/interfaces/libpq/fe-print.c
@@ -9,7 +9,7 @@
* didn't really belong there.
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-print.c,v 1.30 2000/01/18 19:05:31 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-print.c,v 1.31 2000/01/19 01:33:16 ishii Exp $
*
*-------------------------------------------------------------------------
*/
@@ -36,6 +36,7 @@
#endif
#ifdef MULTIBYTE
+#include "miscadmin.h"
#include "mb/pg_wchar.h"
#endif