summaryrefslogtreecommitdiff
path: root/src/closure.h
diff options
context:
space:
mode:
authorAkim Demaille <akim@epita.fr>2001-11-23 14:13:20 +0000
committerAkim Demaille <akim@epita.fr>2001-11-23 14:13:20 +0000
commit6255b435119f729b0a7d27d581b75b9e71a0b89c (patch)
tree5b3c9c3b85d3549098040e8f411b28c0ef1335d6 /src/closure.h
parentb29b2ed5600cd819f4237b7b050288f6e19d102d (diff)
downloadbison-6255b435119f729b0a7d27d581b75b9e71a0b89c.tar.gz
* src/print_graph.c (print_actions): Remove `rule', unused.
* src/LR0.c (kernel_size): Contain `int' instead of `size_t' to pacify GCC's signed < unsigned warnings. * src/closure.c (itemsetsize): Likewise. * src/reader.c (symbol_list_new): Static.
Diffstat (limited to 'src/closure.h')
-rw-r--r--src/closure.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/closure.h b/src/closure.h
index 67759a48..887f3da8 100644
--- a/src/closure.h
+++ b/src/closure.h
@@ -51,6 +51,6 @@ void closure PARAMS ((short *items, int n));
void free_closure PARAMS ((void));
extern short *itemset;
-extern size_t itemsetsize;
+extern int itemsetsize;
#endif /* !CLOSURE_H_ */