diff options
author | phk <phk@FreeBSD.org> | 1995-12-10 13:32:43 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1995-12-10 13:32:43 +0000 |
commit | a298a1843c7bfa2a35aa57de463ba467aeb911e2 (patch) | |
tree | b08207b099364bc62470d5ab3e385be9d742e2c9 /sys/ddb/db_lex.c | |
parent | 2bdd745e5fbfb56190329a4e00ced6207c58f408 (diff) | |
download | FreeBSD-src-a298a1843c7bfa2a35aa57de463ba467aeb911e2.zip FreeBSD-src-a298a1843c7bfa2a35aa57de463ba467aeb911e2.tar.gz |
Staticize and cleanup.
Diffstat (limited to 'sys/ddb/db_lex.c')
-rw-r--r-- | sys/ddb/db_lex.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/ddb/db_lex.c b/sys/ddb/db_lex.c index 38f95a5..26b8dae 100644 --- a/sys/ddb/db_lex.c +++ b/sys/ddb/db_lex.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_lex.c,v 1.8 1995/11/29 10:25:23 phk Exp $ + * $Id: db_lex.c,v 1.9 1995/12/07 12:44:52 davidg Exp $ */ /* @@ -39,8 +39,8 @@ #include <ddb/ddb.h> #include <ddb/db_lex.h> -char db_line[120]; -char * db_lp, *db_endlp; +static char db_line[120]; +static char * db_lp, *db_endlp; static int db_lex __P((void)); static void db_flush_line __P((void)); |