Remove __P().

This commit is contained in:
Ralf Corsepius
2007-03-14 11:46:48 +00:00
parent dfd2947f80
commit e67a778120
2 changed files with 3 additions and 3 deletions

View File

@@ -92,10 +92,10 @@ struct pkthdr {
struct m_ext {
caddr_t ext_buf; /* start of buffer */
void (*ext_free) /* free routine if not the usual */
__P((caddr_t, u_int));
(caddr_t, u_int);
u_int ext_size; /* size of buffer, for ext_free */
void (*ext_ref) /* add a reference to the ext object */
__P((caddr_t, u_int));
(caddr_t, u_int);
};
/*

View File

@@ -64,7 +64,7 @@ struct rtprio {
#include <sys/cdefs.h>
__BEGIN_DECLS
int rtprio __P((int, pid_t, struct rtprio *));
int rtprio (int, pid_t, struct rtprio *);
__END_DECLS
#endif /* !_KERNEL */
#endif /* !_SYS_RTPRIO_H_ */