aboutsummaryrefslogtreecommitdiffstats
path: root/cparser/C.mli
diff options
context:
space:
mode:
Diffstat (limited to 'cparser/C.mli')
-rw-r--r--cparser/C.mli5
1 files changed, 3 insertions, 2 deletions
diff --git a/cparser/C.mli b/cparser/C.mli
index cacdbe7c..cc8d4065 100644
--- a/cparser/C.mli
+++ b/cparser/C.mli
@@ -85,9 +85,10 @@ type attributes = attribute list
(** Storage classes *)
type storage =
- | Storage_default
+ | Storage_default (* used for toplevel names without explicit storage *)
| Storage_extern
| Storage_static
+ | Storage_auto (* used for block-scoped names without explicit storage *)
| Storage_register
(** Unary operators *)
@@ -219,7 +220,7 @@ and stmt_desc =
and slabel =
| Slabel of string
- | Scase of exp
+ | Scase of exp * int64
| Sdefault
(** Declarations *)