summaryrefslogtreecommitdiffstats
path: root/cpukit/librpc/src/rpc
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-08-01 15:47:13 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-08-01 15:47:13 +0000
commit8f926f134190ddf2206f6376e4c0334c5bd56ae7 (patch)
tree69b0f6776450e294511139864c5b905bfbe56f8a /cpukit/librpc/src/rpc
parent2008-08-01 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-8f926f134190ddf2206f6376e4c0334c5bd56ae7.tar.bz2
Add missing prototypes.
Diffstat (limited to 'cpukit/librpc/src/rpc')
-rw-r--r--cpukit/librpc/src/rpc/clnt_tcp.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/cpukit/librpc/src/rpc/clnt_tcp.c b/cpukit/librpc/src/rpc/clnt_tcp.c
index 782aa5d722..f1c316fc8f 100644
--- a/cpukit/librpc/src/rpc/clnt_tcp.c
+++ b/cpukit/librpc/src/rpc/clnt_tcp.c
@@ -68,12 +68,12 @@ static char *rcsid = "$FreeBSD: src/lib/libc/rpc/clnt_tcp.c,v 1.14 2000/01/27 23
static int readtcp();
static int writetcp();
-static enum clnt_stat clnttcp_call();
-static void clnttcp_abort();
-static void clnttcp_geterr();
-static bool_t clnttcp_freeres();
-static bool_t clnttcp_control();
-static void clnttcp_destroy();
+static enum clnt_stat clnttcp_call(CLIENT *, u_long, xdrproc_t, caddr_t, xdrproc_t, caddr_t, struct timeval);
+static void clnttcp_abort(void);
+static void clnttcp_geterr(CLIENT *, struct rpc_err*);
+static bool_t clnttcp_freeres(CLIENT *, xdrproc_t, caddr_t);
+static bool_t clnttcp_control(CLIENT *, int, char *);
+static void clnttcp_destroy(CLIENT *);
static struct clnt_ops tcp_ops = {
clnttcp_call,
@@ -352,7 +352,7 @@ clnttcp_freeres(
}
static void
-clnttcp_abort()
+clnttcp_abort(void)
{
}