Commit 12054ba5 authored by Tom Lane's avatar Tom Lane

Fix sloppiness about static vs non-static declaration of functions.

Some compilers are pickier about this than gcc is.
parent b16a8f49
...@@ -1711,7 +1711,7 @@ copy_statement_with_parameters(StatementClass *stmt) ...@@ -1711,7 +1711,7 @@ copy_statement_with_parameters(StatementClass *stmt)
} }
char * static char *
mapFunction(const char *func) mapFunction(const char *func)
{ {
int i; int i;
...@@ -2020,7 +2020,7 @@ convert_pgbinary_to_char(const char *value, char *rgbValue, int cbValueMax) ...@@ -2020,7 +2020,7 @@ convert_pgbinary_to_char(const char *value, char *rgbValue, int cbValueMax)
} }
unsigned int static unsigned int
conv_from_octal(const unsigned char *s) conv_from_octal(const unsigned char *s)
{ {
int i, int i,
...@@ -2034,7 +2034,7 @@ conv_from_octal(const unsigned char *s) ...@@ -2034,7 +2034,7 @@ conv_from_octal(const unsigned char *s)
} }
unsigned int static unsigned int
conv_from_hex(const unsigned char *s) conv_from_hex(const unsigned char *s)
{ {
int i, int i,
...@@ -2092,7 +2092,7 @@ convert_from_pgbinary(const unsigned char *value, unsigned char *rgbValue, int c ...@@ -2092,7 +2092,7 @@ convert_from_pgbinary(const unsigned char *value, unsigned char *rgbValue, int c
} }
char * static char *
conv_to_octal(unsigned char val) conv_to_octal(unsigned char val)
{ {
int i; int i;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment