aboutsummaryrefslogtreecommitdiff
path: root/sys/ddb/db_input.c
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>1995-12-10 13:32:43 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>1995-12-10 13:32:43 +0000
commit25eb640d903b24d954e620b6596ac5d57bf375ce (patch)
treeb08207b099364bc62470d5ab3e385be9d742e2c9 /sys/ddb/db_input.c
parent76092b83296427423d96c55186e3dd3f195fd0d3 (diff)
Notes
Diffstat (limited to 'sys/ddb/db_input.c')
-rw-r--r--sys/ddb/db_input.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/ddb/db_input.c b/sys/ddb/db_input.c
index c7b44702683f..8d8b02571df6 100644
--- a/sys/ddb/db_input.c
+++ b/sys/ddb/db_input.c
@@ -23,7 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id: db_input.c,v 1.9 1995/11/29 10:25:21 phk Exp $
+ * $Id: db_input.c,v 1.10 1995/12/07 12:44:51 davidg Exp $
*/
/*
@@ -48,10 +48,10 @@
* since input always ends with a new-line. We just
* reset the line position at the end.
*/
-char * db_lbuf_start; /* start of input line buffer */
-char * db_lbuf_end; /* end of input line buffer */
-char * db_lc; /* current character */
-char * db_le; /* one past last character */
+static char * db_lbuf_start; /* start of input line buffer */
+static char * db_lbuf_end; /* end of input line buffer */
+static char * db_lc; /* current character */
+static char * db_le; /* one past last character */
#define CTRL(c) ((c) & 0x1f)
#define isspace(c) ((c) == ' ' || (c) == '\t')