summaryrefslogtreecommitdiffstats
path: root/cpukit/librpc/src/xdr/xdr_rec.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--cpukit/librpc/src/xdr/xdr_rec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/librpc/src/xdr/xdr_rec.c b/cpukit/librpc/src/xdr/xdr_rec.c
index 9ce73577b7..f5337a9df2 100644
--- a/cpukit/librpc/src/xdr/xdr_rec.c
+++ b/cpukit/librpc/src/xdr/xdr_rec.c
@@ -104,7 +104,7 @@ typedef struct rec_strm {
/*
* out-goung bits
*/
- int (*writeit) __P((caddr_t, caddr_t, int));
+ int (*writeit) (caddr_t, caddr_t, int);
caddr_t out_base; /* output buffer (points to frag header) */
caddr_t out_finger; /* next output position */
caddr_t out_boundry; /* data cannot up to this address */
@@ -113,7 +113,7 @@ typedef struct rec_strm {
/*
* in-coming bits
*/
- int (*readit) __P((caddr_t, caddr_t, int));
+ int (*readit) (caddr_t, caddr_t, int);
u_long in_size; /* fixed size of the input buffer */
caddr_t in_base;
caddr_t in_finger; /* location of next byte to be had */