summaryrefslogtreecommitdiff
path: root/sys/ddb/db_lex.h
diff options
context:
space:
mode:
authorNiklas Hallqvist <niklas@cvs.openbsd.org>1997-07-06 16:45:22 +0000
committerNiklas Hallqvist <niklas@cvs.openbsd.org>1997-07-06 16:45:22 +0000
commit067e8027959998ddeebaf8e47951a1d2802d4ab7 (patch)
tree8e441f4de37c216218597f3effe24171343fafdb /sys/ddb/db_lex.h
parenta65ff44b3806c0e6014a4b46b64555793951ca91 (diff)
A number should be db_expr_t
Diffstat (limited to 'sys/ddb/db_lex.h')
-rw-r--r--sys/ddb/db_lex.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ddb/db_lex.h b/sys/ddb/db_lex.h
index afd6fcb2fec..bce47ef35f8 100644
--- a/sys/ddb/db_lex.h
+++ b/sys/ddb/db_lex.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: db_lex.h,v 1.4 1996/04/21 22:19:04 deraadt Exp $ */
+/* $OpenBSD: db_lex.h,v 1.5 1997/07/06 16:45:21 niklas Exp $ */
/* $NetBSD: db_lex.h,v 1.7 1996/02/05 01:57:07 christos Exp $ */
/*
@@ -42,7 +42,7 @@ int db_read_token __P((void));
void db_flush_lex __P((void));
int db_lex __P((void));
-int db_tok_number;
+db_expr_t db_tok_number;
#define TOK_STRING_SIZE 120
char db_tok_string[TOK_STRING_SIZE];
int db_radix;