1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-29 10:41:53 +03:00

Make functions static or NOT_USED as appropriate.

This commit is contained in:
Bruce Momjian
1999-05-26 12:57:23 +00:00
parent 180186272a
commit 278bbf4572
34 changed files with 122 additions and 152 deletions

View File

@ -131,6 +131,7 @@ tprintf(int flag, const char *fmt,...)
/*
* Print a timestamp and a message to stdout or to syslog.
*/
#ifdef NOT_USED
int
tprintf1(const char *fmt,...)
{
@ -156,6 +157,7 @@ tprintf1(const char *fmt,...)
return 1;
}
#endif
/*
* Print a timestamp and a message to stderr.
@ -237,7 +239,8 @@ tprintf_timestamp()
#endif
int
#ifdef NOT_USED
static int
option_flag(int flag)
{
if ((flag < 0) || (flag >= NUM_PG_OPTIONS))
@ -254,6 +257,7 @@ set_option_flag(int flag, int value)
pg_options[flag] = value;
return value;
}
#endif
/*
* Parse an option string like "name,name+,name-,name=value".