diff options
| author | Bruce Evans <bde@FreeBSD.org> | 2004-02-09 13:13:03 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 2004-02-09 13:13:03 +0000 |
| commit | 611e9fdbb42d71c24cbf7e78112735d4943d3e64 (patch) | |
| tree | f6ecad5198481499e9353f1bd8f8c784939bafac | |
| parent | 43a3abfd1e13d2fff6973966ad714b2606cc010a (diff) | |
Notes
| -rw-r--r-- | usr.bin/indent/lexi.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/indent/lexi.c b/usr.bin/indent/lexi.c index beceabdacc91..d2d2c1c125e8 100644 --- a/usr.bin/indent/lexi.c +++ b/usr.bin/indent/lexi.c @@ -64,7 +64,7 @@ struct templ { int rwcode; }; -struct templ specials[100] = +struct templ specials[1000] = { {"switch", 1}, {"case", 2}, @@ -86,6 +86,8 @@ struct templ specials[100] = {"global", 4}, {"extern", 4}, {"void", 4}, + {"const", 4}, + {"volatile", 4}, {"goto", 0}, {"return", 0}, {"if", 5}, |
