aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTatsuo Ishii <ishii@postgresql.org>2001-02-11 01:56:58 +0000
committerTatsuo Ishii <ishii@postgresql.org>2001-02-11 01:56:58 +0000
commitf54c02d2eb5ec11e36f401ff4eb4132b86b3d44e (patch)
tree546f72e83c6bc52cb34c992328ad283392fe080a /src
parent91382c2882cc12a28cde9580f7c0ecaa6ea2cc4a (diff)
downloadpostgresql-f54c02d2eb5ec11e36f401ff4eb4132b86b3d44e.tar.gz
postgresql-f54c02d2eb5ec11e36f401ff4eb4132b86b3d44e.zip
conv.c did not compile anymore. Fix wrong header file inclusion.
Diffstat (limited to 'src')
-rw-r--r--src/backend/utils/mb/conv.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/backend/utils/mb/conv.c b/src/backend/utils/mb/conv.c
index 897ae5e2375..eaef3976b5e 100644
--- a/src/backend/utils/mb/conv.c
+++ b/src/backend/utils/mb/conv.c
@@ -6,13 +6,11 @@
* WIN1250 client encoding support contributed by Pavel Behal
* SJIS UDC (NEC selection IBM kanji) support contributed by Eiji Tokuya
*
- * $Id: conv.c,v 1.22 2001/02/10 02:31:27 tgl Exp $
+ * $Id: conv.c,v 1.23 2001/02/11 01:56:58 ishii Exp $
*
*
*/
-/* can be used in either frontend or backend */
-#include "postgres_fe.h"
-
+#include "postgres.h"
#include "mb/pg_wchar.h"
#ifdef UNICODE_CONVERSION