=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/rpcgen/rpc_tblout.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- src/usr.bin/rpcgen/rpc_tblout.c 1996/06/26 05:38:41 1.2 +++ src/usr.bin/rpcgen/rpc_tblout.c 2001/07/17 02:23:59 1.3 @@ -1,4 +1,4 @@ -/* $OpenBSD: rpc_tblout.c,v 1.2 1996/06/26 05:38:41 deraadt Exp $ */ +/* $OpenBSD: rpc_tblout.c,v 1.3 2001/07/17 02:23:59 pvalchev Exp $ */ /* $NetBSD: rpc_tblout.c,v 1.3 1995/06/24 15:00:15 pk Exp $ */ /* * Sun RPC is a product of Sun Microsystems, Inc. and is provided for @@ -39,7 +39,9 @@ */ #include #include +#include #include +#include "rpc_scan.h" #include "rpc_parse.h" #include "rpc_util.h" @@ -58,8 +60,8 @@ static char tbl_nproc[] = "int %s_nproc =\n\tsizeof(%s_table)/sizeof(%s_table[0]);\n\n"; -static write_table __P((definition *)); -static printit __P((char *, char *)); +static void write_table __P((definition *)); +static void printit __P((char *, char *)); void write_tables() @@ -76,7 +78,7 @@ } } -static +static void write_table(def) definition *def; { @@ -143,7 +145,7 @@ } } -static +static void printit(prefix, type) char *prefix; char *type;