aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1997-05-07 00:58:23 +0000
committerBruce Evans <bde@FreeBSD.org>1997-05-07 00:58:23 +0000
commit89ee8ac3d677a0ff0d0c85ee38f1374fa4fe7c5e (patch)
treee4c5c9162e3bedcc0c666331529c9c81f2582545 /include
parentea3b35174be44be982771f3ec78cd48815ea9124 (diff)
downloadsrc-89ee8ac3d677a0ff0d0c85ee38f1374fa4fe7c5e.tar.gz
src-89ee8ac3d677a0ff0d0c85ee38f1374fa4fe7c5e.zip
Fixed missing __P() to complete the K&R support in this header.
Notes
Notes: svn path=/head/; revision=25519
Diffstat (limited to 'include')
-rw-r--r--include/pthread.h2
-rw-r--r--include/rpc/auth.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/include/pthread.h b/include/pthread.h
index 7f4bbb24b7e1..e3a344eaa6f0 100644
--- a/include/pthread.h
+++ b/include/pthread.h
@@ -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.
diff --git a/include/rpc/auth.h b/include/rpc/auth.h
index e144629ba307..63dfc2fc71cd 100644
--- a/include/rpc/auth.h
+++ b/include/rpc/auth.h
@@ -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