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/stand/boot/cmd.h | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/stand/boot/cmd.h')
-rw-r--r-- | sys/stand/boot/cmd.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/stand/boot/cmd.h b/sys/stand/boot/cmd.h index fdac86cc1fe..cd8c1936b19 100644 --- a/sys/stand/boot/cmd.h +++ b/sys/stand/boot/cmd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd.h,v 1.10 1998/05/25 19:17:42 mickey Exp $ */ +/* $OpenBSD: cmd.h,v 1.11 2002/03/14 01:27:13 millert Exp $ */ /* * Copyright (c) 1997 Michael Shalayeff @@ -40,7 +40,7 @@ struct cmd_table { #define CMDT_VAR 1 #define CMDT_SET 2 #define CMDT_MDC 3 - int (*cmd_exec) __P((void)); + int (*cmd_exec)(void); }; struct cmd_state { @@ -58,6 +58,6 @@ struct cmd_state { }; extern struct cmd_state cmd; -int getcmd __P((void)); -int read_conf __P((void)); -int bootparse __P((int)); +int getcmd(void); +int read_conf(void); +int bootparse(int); |