diff --git a/src/backend/main/main.c b/src/backend/main/main.c index 7887aff3f1c..c3bb0793394 100644 --- a/src/backend/main/main.c +++ b/src/backend/main/main.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/main/main.c,v 1.6 1997/04/15 17:39:17 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/main/main.c,v 1.7 1997/04/24 20:30:09 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -17,7 +17,7 @@ #include "postgres.h" #ifdef USE_LOCALE - #include +# include #endif #include "miscadmin.h" #include "bootstrap/bootstrap.h" /* for BootstrapMain() */ diff --git a/src/backend/utils/Gen_fmgrtab.sh.in b/src/backend/utils/Gen_fmgrtab.sh.in index cb3ac87dd70..807862a127b 100644 --- a/src/backend/utils/Gen_fmgrtab.sh.in +++ b/src/backend/utils/Gen_fmgrtab.sh.in @@ -8,7 +8,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/backend/utils/Attic/Gen_fmgrtab.sh.in,v 1.2 1997/04/09 08:55:32 scrappy Exp $ +# $Header: /cvsroot/pgsql/src/backend/utils/Attic/Gen_fmgrtab.sh.in,v 1.3 1997/04/24 20:30:16 scrappy Exp $ # # NOTES # Passes any -D options on to cpp prior to generating the list @@ -81,7 +81,7 @@ cat > $HFILE <> $HFILE cat >> $HFILE < $TABCFILE < @@ -60,7 +60,7 @@ cash_in(const char *str) char dsymbol, ssymbol, psymbol, nsymbol, csymbol; #ifdef USE_LOCALE - if (lconv == NULL) *lconv = localeconv(); + if (lconv == NULL) lconv = localeconv(); /* frac_digits in the C locale seems to return CHAR_MAX */ /* best guess is 2 in this case I think */ @@ -158,7 +158,7 @@ cash_out(Cash *value) char convention; #ifdef USE_LOCALE - if (lconv == NULL) *lconv = localeconv(); + if (lconv == NULL) lconv = localeconv(); mon_group = *lconv->mon_grouping; comma = *lconv->mon_thousands_sep;