summaryrefslogtreecommitdiffstats
path: root/cpukit/librpc/src/rpc/clnt_raw.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-11-21 05:33:00 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-11-21 05:33:00 +0000
commit5220ae2f71bd24ceb4863375f037bfb27bf8d80d (patch)
tree4f0fc3609f3430e5159214bafc837ab0ae5570f6 /cpukit/librpc/src/rpc/clnt_raw.c
parent2004-11-21 Ralf Corsepius <ralf.corsepius@rtems.org> (diff)
downloadrtems-5220ae2f71bd24ceb4863375f037bfb27bf8d80d.tar.bz2
2004-11-21 Ralf Corsepius <ralf.corsepius@rtems.org>
* librpc/include/rpc/types.h: Include <rtems/stdint.h>. * librpc/src/rpc/clnt_raw.c, librpc/src/rpc/rpcdname.c, librpc/src/rpc/rtems_portmapper.c, librpc/src/rpc/svc.c, librpc/src/rpc/svc_simple.c: Misc. cast-related fixes. Convert to ANSI.
Diffstat (limited to 'cpukit/librpc/src/rpc/clnt_raw.c')
-rw-r--r--cpukit/librpc/src/rpc/clnt_raw.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/cpukit/librpc/src/rpc/clnt_raw.c b/cpukit/librpc/src/rpc/clnt_raw.c
index 300a14cf8d..9195e55887 100644
--- a/cpukit/librpc/src/rpc/clnt_raw.c
+++ b/cpukit/librpc/src/rpc/clnt_raw.c
@@ -84,9 +84,9 @@ void svc_getreq();
* Create a client handle for memory based rpc.
*/
CLIENT *
-clntraw_create(prog, vers)
- u_long prog;
- u_long vers;
+clntraw_create(
+ u_long prog,
+ u_long vers )
{
register struct clnt_raw_private *clp = clntraw_private;
struct rpc_msg call_msg;
@@ -127,14 +127,14 @@ clntraw_create(prog, vers)
}
static enum clnt_stat
-clntraw_call(h, proc, xargs, argsp, xresults, resultsp, timeout)
- CLIENT *h;
- u_long proc;
- xdrproc_t xargs;
- caddr_t argsp;
- xdrproc_t xresults;
- caddr_t resultsp;
- struct timeval timeout;
+clntraw_call(
+ CLIENT *h,
+ u_long proc,
+ xdrproc_t xargs,
+ caddr_t argsp,
+ xdrproc_t xresults,
+ caddr_t resultsp,
+ struct timeval timeout )
{
register struct clnt_raw_private *clp = clntraw_private;
register XDR *xdrs = &clp->xdr_stream;
@@ -208,10 +208,10 @@ clntraw_geterr()
static bool_t
-clntraw_freeres(cl, xdr_res, res_ptr)
- CLIENT *cl;
- xdrproc_t xdr_res;
- caddr_t res_ptr;
+clntraw_freeres(
+ CLIENT *cl,
+ xdrproc_t xdr_res,
+ caddr_t res_ptr )
{
register struct clnt_raw_private *clp = clntraw_private;
register XDR *xdrs = &clp->xdr_stream;