summaryrefslogtreecommitdiff
path: root/bin/ksh/lex.h
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1999-06-15 01:18:37 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1999-06-15 01:18:37 +0000
commitb6f2d26d5b213fdd95fe8f3a8aaa9c02e181070c (patch)
tree3940e971a5fd11eb5754339ba24122db7dcdece3 /bin/ksh/lex.h
parented796a820653ef1e6c63e0bae7a6f19bbff18fbb (diff)
patches from pdksh 5.2.13.11
Diffstat (limited to 'bin/ksh/lex.h')
-rw-r--r--bin/ksh/lex.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ksh/lex.h b/bin/ksh/lex.h
index 427d20cabef..334e46ca6eb 100644
--- a/bin/ksh/lex.h
+++ b/bin/ksh/lex.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: lex.h,v 1.4 1998/06/25 19:02:07 millert Exp $ */
+/* $OpenBSD: lex.h,v 1.5 1999/06/15 01:18:35 millert Exp $ */
/*
* Source input, lexer and parser
@@ -12,7 +12,7 @@ typedef struct source Source;
struct source {
const char *str; /* input pointer */
int type; /* input type */
- char const *start; /* start of current buffer */
+ const char *start; /* start of current buffer */
union {
char **strv; /* string [] */
struct shf *shf; /* shell file */