1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-23 14:01:44 +03:00

Remove compile errors.

This commit is contained in:
Hiroshi Inoue
2002-03-08 09:50:39 +00:00
parent 4b47467a6b
commit fc70104725
2 changed files with 5 additions and 0 deletions

View File

@ -15,6 +15,9 @@
#include <ctype.h> #include <ctype.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#ifndef TRUE
#define TRUE 1
#endif
pg_CS CS_Table[] = pg_CS CS_Table[] =
{ {

View File

@ -1266,7 +1266,9 @@ ctype_length(Int2 ctype)
case SQL_C_BINARY: case SQL_C_BINARY:
case SQL_C_CHAR: case SQL_C_CHAR:
#ifdef UNICODE_SUPPORT
case SQL_C_WCHAR: case SQL_C_WCHAR:
#endif /* UNICODE_SUPPORT */
return 0; return 0;
default: /* should never happen */ default: /* should never happen */