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/compat/common/compat_util.h | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/compat/common/compat_util.h')
-rw-r--r-- | sys/compat/common/compat_util.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/compat/common/compat_util.h b/sys/compat/common/compat_util.h index e08ef7f8754..3494c242fc7 100644 --- a/sys/compat/common/compat_util.h +++ b/sys/compat/common/compat_util.h @@ -1,4 +1,4 @@ -/* $OpenBSD: compat_util.h,v 1.6 2001/11/06 19:53:17 miod Exp $ */ +/* $OpenBSD: compat_util.h,v 1.7 2002/03/14 01:26:49 millert Exp $ */ /* $NetBSD: compat_util.h,v 1.1 1995/06/24 20:16:05 christos Exp $ */ /* @@ -39,8 +39,8 @@ struct emul; /* struct proc; */ -caddr_t stackgap_init __P((struct emul *)); -void *stackgap_alloc __P((caddr_t *, size_t)); +caddr_t stackgap_init(struct emul *); +void *stackgap_alloc(caddr_t *, size_t); struct emul_flags_xtab { unsigned long omask; @@ -48,8 +48,8 @@ struct emul_flags_xtab { unsigned long nval; }; -int emul_find __P((struct proc *, caddr_t *, const char *, char *, - char **, int)); +int emul_find(struct proc *, caddr_t *, const char *, char *, + char **, int); unsigned long emul_flags_translate(const struct emul_flags_xtab *tab, unsigned long in, unsigned long *leftover); |