diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
commit | 8327d0774703553db5e1a41a04bfdf4b1797c2ce (patch) | |
tree | ac9a52bace179e17769651fb9f805070d78abe5f /sys/lib/libsa/bootparam.c | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/lib/libsa/bootparam.c')
-rw-r--r-- | sys/lib/libsa/bootparam.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/lib/libsa/bootparam.c b/sys/lib/libsa/bootparam.c index fa219a14014..10f7844ffc8 100644 --- a/sys/lib/libsa/bootparam.c +++ b/sys/lib/libsa/bootparam.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bootparam.c,v 1.8 1998/05/31 23:39:16 mickey Exp $ */ +/* $OpenBSD: bootparam.c,v 1.9 2002/03/14 01:27:07 millert Exp $ */ /* $NetBSD: bootparam.c,v 1.10 1996/10/14 21:16:55 thorpej Exp $ */ /* @@ -77,11 +77,11 @@ struct xdr_inaddr { int32_t addr[4]; }; -int xdr_inaddr_encode __P((char **p, struct in_addr ia)); -int xdr_inaddr_decode __P((char **p, struct in_addr *ia)); +int xdr_inaddr_encode(char **p, struct in_addr ia); +int xdr_inaddr_decode(char **p, struct in_addr *ia); -int xdr_string_encode __P((char **p, char *str, int len)); -int xdr_string_decode __P((char **p, char *str, int *len_p)); +int xdr_string_encode(char **p, char *str, int len); +int xdr_string_decode(char **p, char *str, int *len_p); /* |