aboutsummaryrefslogtreecommitdiff
path: root/sys/ddb/db_output.h
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1995-11-24 13:53:05 +0000
committerBruce Evans <bde@FreeBSD.org>1995-11-24 13:53:05 +0000
commit4753168fae3062574cec15130f5140ddfb53b59f (patch)
tree9b9a343f5650653a2c35073534d44bcf4fc7473c /sys/ddb/db_output.h
parent7f0e0625f6f9ccf32814270a7427a63595957c8b (diff)
downloadsrc-4753168fae3062574cec15130f5140ddfb53b59f.tar.gz
src-4753168fae3062574cec15130f5140ddfb53b59f.zip
Completed function declarations and/or added prototypes.
Removed `extern' from prototypes. Sorted prototypes. Uniformized idempotency ifdefs.
Notes
Notes: svn path=/head/; revision=12472
Diffstat (limited to 'sys/ddb/db_output.h')
-rw-r--r--sys/ddb/db_output.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/sys/ddb/db_output.h b/sys/ddb/db_output.h
index 3a2f5fd321a9..73e95e52fbe9 100644
--- a/sys/ddb/db_output.h
+++ b/sys/ddb/db_output.h
@@ -23,11 +23,11 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id: db_output.h,v 1.6 1994/09/27 12:15:53 davidg Exp $
+ * $Id: db_output.h,v 1.7 1995/05/30 07:57:04 rgrimes Exp $
*/
#ifndef _DDB_DB_OUTPUT_H_
-#define _DDB_DB_OUTPUT_H_ 1
+#define _DDB_DB_OUTPUT_H_
/*
* Author: David B. Golub, Carnegie Mellon University
@@ -38,7 +38,8 @@
* Printing routines for kernel debugger.
*/
-extern void db_force_whitespace();
-extern int db_print_position();
-extern void db_end_line();
-#endif /* _DDB_DB_OUTPUT_H_ */
+void db_end_line __P((void));
+void db_force_whitespace __P((void));
+int db_print_position __P((void));
+
+#endif /* !_DDB_DB_OUTPUT_H_ */