diff options
author | bde <bde@FreeBSD.org> | 1997-04-01 14:31:06 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1997-04-01 14:31:06 +0000 |
commit | 5ba45e8d336f82d82996477121322c519415112f (patch) | |
tree | b60b76faa7633acfab9e0c4462e40e4404ff1a9f /sys/ddb/db_output.c | |
parent | 68052e6de3b1e9b5ba9a171ddf0d7375d60b6f3f (diff) | |
download | FreeBSD-src-5ba45e8d336f82d82996477121322c519415112f.zip FreeBSD-src-5ba45e8d336f82d82996477121322c519415112f.tar.gz |
Fixed gratuitous ANSIisms.
Diffstat (limited to 'sys/ddb/db_output.c')
-rw-r--r-- | sys/ddb/db_output.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/sys/ddb/db_output.c b/sys/ddb/db_output.c index 4d4b67f..d0bb093 100644 --- a/sys/ddb/db_output.c +++ b/sys/ddb/db_output.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id$ + * $Id: db_output.c,v 1.21 1997/02/22 09:28:26 peter Exp $ */ /* @@ -151,7 +151,12 @@ db_print_position() * Printing */ void +#if __STDC__ db_printf(const char *fmt, ...) +#else +db_printf(fmt) + const char *fmt; +#endif { va_list listp; @@ -163,7 +168,12 @@ db_printf(const char *fmt, ...) int db_indent; void +#if __STDC__ db_iprintf(const char *fmt,...) +#else +db_iprintf(fmt) + const char *fmt; +#endif { register int i; va_list listp; |