Fixed missing __P() to complete the K&R support in this header.

This commit is contained in:
Bruce Evans 1997-05-07 00:58:23 +00:00
parent ea3b35174b
commit 89ee8ac3d6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=25519
2 changed files with 3 additions and 3 deletions

View File

@ -116,7 +116,7 @@ typedef struct pthread_once pthread_once_t;
* use in header symbols.
*/
typedef void *pthread_addr_t;
typedef void *(*pthread_startroutine_t) (void *);
typedef void *(*pthread_startroutine_t) __P((void *));
/*
* Once definitions.

View File

@ -28,7 +28,7 @@
*
* from: @(#)auth.h 1.17 88/02/08 SMI
* from: @(#)auth.h 2.3 88/08/07 4.0 RPCSRC
* $Id$
* $Id: auth.h,v 1.8 1997/02/23 09:17:21 peter Exp $
*/
/*
@ -89,7 +89,7 @@ struct opaque_auth {
u_int oa_length; /* not to exceed MAX_AUTH_BYTES */
};
__BEGIN_DECLS
bool_t xdr_opaque_auth(XDR *xdrs, struct opaque_auth *ap);
bool_t xdr_opaque_auth __P((XDR *xdrs, struct opaque_auth *ap));
__END_DECLS