writing 'foo()' rather than 'foo(void)'.
int
-backend_pid()
+backend_pid(void)
{
return getpid();
}
* Revisions by Christopher B. Browne, Liberty RMS
* Win32 Service code added by Dave Page
*
- * $PostgreSQL: pgsql/contrib/pg_autovacuum/pg_autovacuum.c,v 1.22 2004/10/16 21:50:02 tgl Exp $
+ * $PostgreSQL: pgsql/contrib/pg_autovacuum/pg_autovacuum.c,v 1.23 2004/10/25 02:14:59 tgl Exp $
*/
#include "postgres_fe.h"
*/
#ifndef WIN32
static void
-daemonize()
+daemonize(void)
{
pid_t pid;
/* init_db_list() creates the db_list and initalizes template1 */
static Dllist *
-init_db_list()
+init_db_list(void)
{
Dllist *db_list = DLNewList();
db_info *dbs = NULL;
static void
-free_cmd_args()
+free_cmd_args(void)
{
if (args != NULL)
{
}
static void
-usage()
+usage(void)
{
int i = 0;
float f = 0;
}
static void
-print_cmd_args()
+print_cmd_args(void)
{
sprintf(logbuffer, "Printing command_args");
log_entry(logbuffer, LVL_INFO);
/* -------------------------------------------------------------------------
* pg_dumplo
*
- * $PostgreSQL: pgsql/contrib/pg_dumplo/main.c,v 1.19 2003/11/29 19:51:35 pgsql Exp $
+ * $PostgreSQL: pgsql/contrib/pg_dumplo/main.c,v 1.20 2004/10/25 02:15:00 tgl Exp $
*
* Karel Zak 1999-2000
* -------------------------------------------------------------------------
static void
-usage()
+usage(void)
{
printf("\npg_dumplo %s - PostgreSQL large objects dump\n", PG_VERSION);
puts("pg_dumplo [option]\n\n"
/*
- * $PostgreSQL: pgsql/contrib/pgbench/pgbench.c,v 1.33 2004/09/14 03:39:23 tgl Exp $
+ * $PostgreSQL: pgsql/contrib/pgbench/pgbench.c,v 1.34 2004/10/25 02:15:01 tgl Exp $
*
* pgbench: a simple TPC-B like benchmark program for PostgreSQL
* written by Tatsuo Ishii
} CState;
static void
-usage()
+usage(void)
{
fprintf(stderr, "usage: pgbench [-h hostname][-p port][-c nclients][-t ntransactions][-s scaling_factor][-n][-C][-v][-S][-N][-l][-U login][-P password][-d][dbname]\n");
fprintf(stderr, "(initialize mode): pgbench -i [-h hostname][-p port][-s scaling_factor][-U login][-P password][-d][dbname]\n");
/* set up a connection to the backend */
static PGconn *
-doConnect()
+doConnect(void)
{
PGconn *con;
PGresult *res;
}
static void
-des_init()
+des_init(void)
{
int i,
j,
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $PostgreSQL: pgsql/contrib/pgcrypto/internal.c,v 1.13 2004/05/07 00:24:57 tgl Exp $
+ * $PostgreSQL: pgsql/contrib/pgcrypto/internal.c,v 1.14 2004/10/25 02:15:02 tgl Exp $
*/
/* ciphers */
static PX_Cipher *
-rj_128_ecb()
+rj_128_ecb(void)
{
return rj_load(MODE_ECB);
}
static PX_Cipher *
-rj_128_cbc()
+rj_128_cbc(void)
{
return rj_load(MODE_CBC);
}
static PX_Cipher *
-bf_ecb_load()
+bf_ecb_load(void)
{
return bf_load(MODE_ECB);
}
static PX_Cipher *
-bf_cbc_load()
+bf_cbc_load(void)
{
return bf_load(MODE_CBC);
}
#ifdef DICT_BODY
#include <ctype.h> /* tolower */
-static void * setup_english_stemmer();
+static void * setup_english_stemmer(void);
static const char * english_stem(void * z, const char * q, int i0, int i1);
#undef ISFINISH
static int
-is_stopengword(void* obj,char* word,int len) {
+is_stopengword(void* obj,char* word,int len)
+{
return ( len == find_english_stopword((unsigned char*)word, len) ) ? 1 : 0;
}
-static void * setup_english_stemmer()
+static void *
+setup_english_stemmer(void)
{
struct english_stemmer * z = (struct english_stemmer *) malloc(sizeof(struct english_stemmer));
z->p = 0; z->p_size = 0;
return (void *) z;
}
-static void closedown_english_stemmer(void * z_)
+static void
+closedown_english_stemmer(void * z_)
{
struct english_stemmer * z = (struct english_stemmer *) z_;
free_pool(z->irregulars);
}
static char*
-engstemming(void* obj, char *word, int *len) {
+engstemming(void* obj, char *word, int *len)
+{
struct english_stemmer * z = (struct english_stemmer *) obj;
const char* stemmed_word;
char *result = word;