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/ddb/db_output.h | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/ddb/db_output.h')
-rw-r--r-- | sys/ddb/db_output.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/ddb/db_output.h b/sys/ddb/db_output.h index 603ed01823a..545cb09fade 100644 --- a/sys/ddb/db_output.h +++ b/sys/ddb/db_output.h @@ -1,4 +1,4 @@ -/* $OpenBSD: db_output.h,v 1.9 1997/11/04 20:45:17 chuck Exp $ */ +/* $OpenBSD: db_output.h,v 1.10 2002/03/14 01:26:51 millert Exp $ */ /* $NetBSD: db_output.h,v 1.9 1996/04/04 05:13:50 cgd Exp $ */ /* @@ -33,9 +33,9 @@ /* * Printing routines for kernel debugger. */ -void db_force_whitespace __P((void)); -void db_putchar __P((int)); -int db_print_position __P((void)); -int db_printf __P((const char *, ...)) +void db_force_whitespace(void); +void db_putchar(int); +int db_print_position(void); +int db_printf(const char *, ...) __kprintf_attribute__((__format__(__kprintf__,1,2))); -void db_end_line __P((int)); +void db_end_line(int); |