Fixed several prototypes.. Most changes are f() to f(void).
authorAdam Dickmeiss <adam@indexdata.dk>
Sun, 29 Oct 2006 17:20:00 +0000 (17:20 +0000)
committerAdam Dickmeiss <adam@indexdata.dk>
Sun, 29 Oct 2006 17:20:00 +0000 (17:20 +0000)
17 files changed:
dfa/agrep.c
include/idzebra/isam-codec.h
include/idzebra/snippet.h
index/extract.c
index/index.h
index/kinput.c
index/recgrs.c
index/reckeys.c
index/reckeys.h
index/zebrash.c
index/zsets.c
test/api/testlib.c
test/api/testlib.h
util/flock.c
util/snippet.c
util/tstcharmap.c
util/tstflock.c

index 22894a1..c0c6173 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: agrep.c,v 1.18 2006-08-14 10:40:08 adam Exp $
+/* $Id: agrep.c,v 1.19 2006-10-29 17:20:00 adam Exp $
    Copyright (C) 1995-2006
    Index Data ApS
 
@@ -60,9 +60,7 @@ void error (const char *format, ...)
 
 static int show_lines = 0;
 
-int agrep_options (argc, argv)
-int argc;
-char **argv;
+int agrep_options (int argc, char **argv)
 {
     while (--argc > 0)
         if (**++argv == '-')
@@ -112,8 +110,7 @@ static char *inf_buf;
 static char *inf_ptr, *inf_flsh;
 static int inf_eof, line_no;
 
-static int inf_flush (fd)
-int fd;
+static int inf_flush (int fd)
 {
     char *p;
     unsigned b, r;
@@ -143,8 +140,7 @@ int fd;
     return 0;
 }
 
-static char *prline (p)
-char *p;
+static char *prline (char *p)
 {
     char *p0;
 
@@ -163,9 +159,7 @@ char *p;
     return p;
 }
 
-static int go (fd, dfaar)
-int fd;
-struct DFA_state **dfaar;
+static int go (int fd, struct DFA_state **dfaar)
 {
     struct DFA_state *s = dfaar[0];
     struct DFA_tran *t;
@@ -220,9 +214,7 @@ struct DFA_state **dfaar;
     return 0;
 }
 
-int agrep (dfas, fd)
-struct DFA_state **dfas;
-int fd;
+int agrep (struct DFA_state **dfas, int fd)
 {
     inf_buf = imalloc (sizeof(char)*INF_BUF_SIZE);
     inf_eof = 0;
@@ -237,9 +229,7 @@ int fd;
 }
 
 
-int main (argc, argv)
-int argc;
-char **argv;
+int main (int argc, char **argv)
 {
     const char *pattern = NULL;
     char outbuf[BUFSIZ];
index 5651006..88a0853 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: isam-codec.h,v 1.4 2006-08-14 10:40:14 adam Exp $
+/* $Id: isam-codec.h,v 1.5 2006-10-29 17:20:00 adam Exp $
    Copyright (C) 1995-2006
    Index Data ApS
 
@@ -24,7 +24,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 #define ISAM_CODEC_H
 
 typedef struct {
-    void *(*start)();
+    void *(*start)(void);
     void (*stop)(void *p);
     void (*decode)(void *p, char **dst, const char **src);
     void (*encode)(void *p, char **dst, const char **src);
index a512743..1bc5a7e 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: snippet.h,v 1.6 2006-08-14 10:40:14 adam Exp $
+/* $Id: snippet.h,v 1.7 2006-10-29 17:20:00 adam Exp $
    Copyright (C) 1995-2006
    Index Data ApS
 
@@ -39,7 +39,7 @@ typedef struct zebra_snippets zebra_snippets;
 typedef struct zebra_snippet_word zebra_snippet_word;
 
 YAZ_EXPORT
-zebra_snippets *zebra_snippets_create();
+zebra_snippets *zebra_snippets_create(void);
 
 YAZ_EXPORT
 void zebra_snippets_destroy(zebra_snippets *l);
index 12db319..1439538 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: extract.c,v 1.230 2006-09-15 10:45:12 adam Exp $
+/* $Id: extract.c,v 1.231 2006-10-29 17:20:01 adam Exp $
    Copyright (C) 1995-2006
    Index Data ApS
 
@@ -46,7 +46,7 @@ struct encode_info {
 static int log_level = 0;
 static int log_level_initialized = 0;
 
-static void zebra_init_log_level()
+static void zebra_init_log_level(void)
 {
     if (!log_level_initialized)
     {
index 4997cfd..f04b623 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: index.h,v 1.179 2006-10-12 12:28:42 adam Exp $
+/* $Id: index.h,v 1.180 2006-10-29 17:20:01 adam Exp $
    Copyright (C) 1995-2006
    Index Data ApS
 
@@ -410,7 +410,7 @@ int zebra_file_stat (const char *file_name, struct stat *buf,
 
 void zebra_livcode_transform(ZebraHandle zh, Z_RPNQuery *query);
 
-void *iscz1_start ();
+void *iscz1_start (void);
 void iscz1_reset (void *vp);
 void iscz1_stop (void *p);
 void iscz1_decode (void *vp, char **dst, const char **src);
index 7a4794f..5469b50 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: kinput.c,v 1.76 2006-08-14 10:40:15 adam Exp $
+/* $Id: kinput.c,v 1.77 2006-10-29 17:20:01 adam Exp $
    Copyright (C) 1995-2006
    Index Data ApS
 
@@ -258,7 +258,7 @@ struct heap_info {
     int no_iterations;
 };
 
-static struct heap_info *key_heap_malloc()
+static struct heap_info *key_heap_malloc(void)
 {  /* malloc and clear it */
     struct heap_info *hi;
     hi = (struct heap_info *) xmalloc (sizeof(*hi));
index 4062b52..6ebf807 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: recgrs.c,v 1.8 2006-10-26 23:45:46 adam Exp $
+/* $Id: recgrs.c,v 1.9 2006-10-29 17:20:01 adam Exp $
    Copyright (C) 1995-2006
    Index Data ApS
 
@@ -245,7 +245,7 @@ static int sp_expr(struct source_parser *sp, data1_node *n, RecWord *wrd)
     return 1;
 }
 
-static struct source_parser *source_parser_create()
+static struct source_parser *source_parser_create(void)
 {
     struct source_parser *sp = xmalloc(sizeof(*sp));
 
index 0ef2e3e..01bf317 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: reckeys.c,v 1.7 2006-08-14 10:40:15 adam Exp $
+/* $Id: reckeys.c,v 1.8 2006-10-29 17:20:01 adam Exp $
    Copyright (C) 1995-2006
    Index Data ApS
 
@@ -79,7 +79,7 @@ static void init_hash(zebra_rec_keys_t p)
     }
 }
 
-zebra_rec_keys_t zebra_rec_keys_open()
+zebra_rec_keys_t zebra_rec_keys_open(void)
 {
     zebra_rec_keys_t p = xmalloc(sizeof(*p));
     p->buf_used = 0;
index 27b36ab..dd8e649 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: reckeys.h,v 1.5 2006-08-14 10:40:15 adam Exp $
+/* $Id: reckeys.h,v 1.6 2006-10-29 17:20:01 adam Exp $
    Copyright (C) 1995-2006
    Index Data ApS
 
@@ -25,7 +25,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
 typedef struct zebra_rec_keys_t_ *zebra_rec_keys_t;
 
-zebra_rec_keys_t zebra_rec_keys_open();
+zebra_rec_keys_t zebra_rec_keys_open(void);
 
 void zebra_rec_keys_close(zebra_rec_keys_t p);
 
index 9ac1399..2fd1157 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: zebrash.c,v 1.39 2006-08-14 10:40:15 adam Exp $
+/* $Id: zebrash.c,v 1.40 2006-10-29 17:20:01 adam Exp $
    Copyright (C) 1995-2006
    Index Data ApS
 
@@ -764,7 +764,7 @@ static void Zerrors (WRBUF outbuff)
  * The shell
  */
  
-void shell()
+void shell(void)
 {
     int rc=0;
     WRBUF outbuff=wrbuf_alloc();
@@ -827,7 +827,7 @@ void shell()
 } /* shell() */
 
 
-static void usage()
+static void usage(void)
 {
     printf ("usage:\n");
     printf ("zebrash [-c config]\n");
index c4ee2ff..643ba2c 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: zsets.c,v 1.111 2006-09-20 10:51:25 adam Exp $
+/* $Id: zsets.c,v 1.112 2006-10-29 17:20:01 adam Exp $
    Copyright (C) 1995-2006
    Index Data ApS
 
@@ -83,7 +83,7 @@ static int log_level_searchhits=0;
 static int log_level_searchterms=0;
 static int log_level_resultsets=0;
 
-static void loglevels()
+static void loglevels(void)
 {
     if (log_level_set)
         return;
index 5735254..18f3cd9 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: testlib.c,v 1.38 2006-09-08 09:56:40 adam Exp $
+/* $Id: testlib.c,v 1.39 2006-10-29 17:20:01 adam Exp $
    Copyright (C) 1995-2006
    Index Data ApS
 
@@ -89,7 +89,7 @@ ZebraService tl_start_up(char *cfgname, int argc, char **argv)
 /**
  * get_srcdir: return env srcdir or . (if does does not exist)
  */
-const char *tl_get_srcdir()
+const char *tl_get_srcdir(void)
 {
     const char *srcdir = getenv("srcdir");
     if (!srcdir || ! *srcdir)
index c6ceb79..7ea589a 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: testlib.h,v 1.22 2006-08-23 07:37:02 adam Exp $
+/* $Id: testlib.h,v 1.23 2006-10-29 17:20:01 adam Exp $
    Copyright (C) 1995-2006
    Index Data ApS
 
@@ -43,7 +43,7 @@ ZebraService tl_start_up(char *cfgname, int argc, char **argv);
  * get_srcdir : returns the source dir. Most often ".", but when
  * making distcheck, some other dir 
  */
-const char *tl_get_srcdir();
+const char *tl_get_srcdir(void);
 
 /** 
  * start_log: open a log file 
index 50b300e..704103c 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: flock.c,v 1.19 2006-10-27 11:05:14 adam Exp $
+/* $Id: flock.c,v 1.20 2006-10-29 17:20:02 adam Exp $
    Copyright (C) 1995-2006
    Index Data ApS
 
@@ -368,7 +368,7 @@ int zebra_unlock(ZebraLockHandle h)
  * The default posix_locks=1 is assumed.. This function sets posix_locks
  * to zero if linuxthreads is in use.
  */
-static int check_for_linuxthreads()
+static int check_for_linuxthreads(void)
 {
 #if __linux
 #ifdef _CS_GNU_LIBPTHREAD_VERSION
index 62663cf..48d37ef 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: snippet.c,v 1.10 2006-08-14 10:40:34 adam Exp $
+/* $Id: snippet.c,v 1.11 2006-10-29 17:20:02 adam Exp $
    Copyright (C) 1995-2006
    Index Data ApS
 
@@ -31,7 +31,7 @@ struct zebra_snippets {
     zebra_snippet_word *tail;
 };
 
-zebra_snippets *zebra_snippets_create()
+zebra_snippets *zebra_snippets_create(void)
 {
     NMEM nmem = nmem_create();
     zebra_snippets *l = nmem_malloc(nmem, sizeof(*l));
index da7151a..201a900 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: tstcharmap.c,v 1.5 2006-08-14 10:40:34 adam Exp $
+/* $Id: tstcharmap.c,v 1.6 2006-10-29 17:20:02 adam Exp $
    Copyright (C) 1995-2006
    Index Data ApS
 
@@ -27,7 +27,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 #include <yaz/log.h>
 
 /* use env srcdir as base directory - or current directory if unset */
-const char *get_srcdir()
+const char *get_srcdir(void)
 {
     const char *srcdir = getenv("srcdir");
     if (!srcdir || ! *srcdir)
@@ -36,7 +36,7 @@ const char *get_srcdir()
 
 }
 
-void tst1()
+void tst1(void)
 {
     /* open existing map chrmaptab.chr */
     chrmaptab tab = chrmaptab_create(get_srcdir() /* tabpath */,
@@ -48,7 +48,7 @@ void tst1()
     chrmaptab_destroy(tab);
 }
 
-void tst2()
+void tst2(void)
 {
     /* open non-existing nonexist.chr */
     chrmaptab tab = chrmaptab_create(get_srcdir() /* tabpath */,
index 76166b4..d481fc5 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: tstflock.c,v 1.16 2006-08-14 10:40:34 adam Exp $
+/* $Id: tstflock.c,v 1.17 2006-10-29 17:20:02 adam Exp $
    Copyright (C) 1995-2006
    Index Data ApS
 
@@ -71,7 +71,7 @@ pthread_mutex_t sleep_mutex = PTHREAD_MUTEX_INITIALIZER;
 
 int test_fd = 0;
 
-static void small_sleep()
+static void small_sleep(void)
 {
 #ifdef WIN32
     Sleep(2);
@@ -194,7 +194,7 @@ static void tst_thread(int num, int write_flag)
             num, write_flag, seq);
 }
 
-static void tst()
+static void tst(void)
 {
     tst_thread(4, 1); /* write locks */
     if (1)
@@ -213,7 +213,7 @@ static void tst()
     tst_thread(20, 2); /* random locks */
 }
 
-void fork_tst()
+void fork_tst(void)
 {
 #if HAVE_SYS_WAIT_H
     pid_t pid[2];