Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/ddb allow one to #define DB_MAX_LINE and DB_MAX_WIDTH in...
details: https://anonhg.NetBSD.org/src/rev/c8c8e4fedbe1
branches: trunk
changeset: 511976:c8c8e4fedbe1
user: mrg <mrg%NetBSD.org@localhost>
date: Sun Jul 01 12:16:25 2001 +0000
description:
allow one to #define DB_MAX_LINE and DB_MAX_WIDTH independantly.
diffstat:
sys/ddb/db_output.c | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diffs (21 lines):
diff -r 743c6ab0086f -r c8c8e4fedbe1 sys/ddb/db_output.c
--- a/sys/ddb/db_output.c Sun Jul 01 11:55:36 2001 +0000
+++ b/sys/ddb/db_output.c Sun Jul 01 12:16:25 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: db_output.c,v 1.24 2001/02/24 00:00:26 cgd Exp $ */
+/* $NetBSD: db_output.c,v 1.25 2001/07/01 12:16:25 mrg Exp $ */
/*
* Mach Operating System
@@ -59,8 +59,10 @@
#ifndef DB_MAX_LINE
#define DB_MAX_LINE 24 /* maximum line */
+#endif /* DB_MAX_LINE */
+#ifndef DB_MAX_WIDTH
#define DB_MAX_WIDTH 80 /* maximum width */
-#endif /* DB_MAX_LINE */
+#endif /* DB_MAX_WIDTH */
#define DB_MIN_MAX_WIDTH 20 /* minimum max width */
#define DB_MIN_MAX_LINE 3 /* minimum max line */
Home |
Main Index |
Thread Index |
Old Index