diff options
Diffstat (limited to 'sys/ddb/db_lex.h')
-rw-r--r-- | sys/ddb/db_lex.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sys/ddb/db_lex.h b/sys/ddb/db_lex.h index aaf7d942f9b..79571bb866f 100644 --- a/sys/ddb/db_lex.h +++ b/sys/ddb/db_lex.h @@ -1,4 +1,4 @@ -/* $OpenBSD: db_lex.h,v 1.6 2002/03/14 01:26:51 millert Exp $ */ +/* $OpenBSD: db_lex.h,v 1.7 2002/07/01 21:56:55 miod Exp $ */ /* $NetBSD: db_lex.h,v 1.7 1996/02/05 01:57:07 christos Exp $ */ /* @@ -42,10 +42,9 @@ int db_read_token(void); void db_flush_lex(void); int db_lex(void); -db_expr_t db_tok_number; +extern db_expr_t db_tok_number; #define TOK_STRING_SIZE 120 -char db_tok_string[TOK_STRING_SIZE]; -int db_radix; +extern char db_tok_string[TOK_STRING_SIZE]; #define tEOF (-1) #define tEOL 1 |