aboutsummaryrefslogtreecommitdiffstats
path: root/cparser/C.mli
diff options
context:
space:
mode:
Diffstat (limited to 'cparser/C.mli')
-rw-r--r--cparser/C.mli3
1 files changed, 2 insertions, 1 deletions
diff --git a/cparser/C.mli b/cparser/C.mli
index cacdbe7c..d674afb8 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 *)