diff options
author | pfg <pfg@FreeBSD.org> | 2014-10-12 18:01:52 +0000 |
---|---|---|
committer | pfg <pfg@FreeBSD.org> | 2014-10-12 18:01:52 +0000 |
commit | e669b6bbabfdf3b1e0e04dcec418cfb58c9971d1 (patch) | |
tree | 50b65e68f774948c7bebabe6cf5b057cc0431206 /sys/ddb/db_output.c | |
parent | 73e76bf94f92c154977b7f2bca22cb460ec21d46 (diff) | |
download | FreeBSD-src-e669b6bbabfdf3b1e0e04dcec418cfb58c9971d1.zip FreeBSD-src-e669b6bbabfdf3b1e0e04dcec418cfb58c9971d1.tar.gz |
ddb: ANSI-fy function declarations.
MFC after: 5 days
Diffstat (limited to 'sys/ddb/db_output.c')
-rw-r--r-- | sys/ddb/db_output.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ddb/db_output.c b/sys/ddb/db_output.c index 8390a86..a2afb6a 100644 --- a/sys/ddb/db_output.c +++ b/sys/ddb/db_output.c @@ -91,7 +91,7 @@ static void db_pager(void); * Force pending whitespace. */ void -db_force_whitespace() +db_force_whitespace(void) { register int last_print, next_tab; @@ -308,7 +308,7 @@ db_pager(void) * Return output position */ int -db_print_position() +db_print_position(void) { return (db_output_position); } |