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/kern/makesyscalls.sh | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/kern/makesyscalls.sh')
-rw-r--r-- | sys/kern/makesyscalls.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/makesyscalls.sh b/sys/kern/makesyscalls.sh index 6aac60c0270..97a72978fce 100644 --- a/sys/kern/makesyscalls.sh +++ b/sys/kern/makesyscalls.sh @@ -1,5 +1,5 @@ #! /bin/sh - -# $OpenBSD: makesyscalls.sh,v 1.8 2001/08/26 04:10:56 deraadt Exp $ +# $OpenBSD: makesyscalls.sh,v 1.9 2002/03/14 01:27:04 millert Exp $ # $NetBSD: makesyscalls.sh,v 1.26 1998/01/09 06:17:51 thorpej Exp $ # # Copyright (c) 1994,1996 Christopher G. Demetriou @@ -348,7 +348,7 @@ function putent(nodefs, compatwrap) { # get none, since they always have sys_nosys() for their table # entries. if (nodefs != "INDIR") { - prototype = "__P((struct proc *, void *, register_t *))" + prototype = "(struct proc *, void *, register_t *)" if (compatwrap == "") printf("int\t%s\t%s;\n", funcname, prototype) > sysprotos |