More constness/namespace policing
[pspp-builds.git] / src / language / control / control-stack.h
index 87ef4bee3230cca89b9ea0a728b9bd984d8e0cf4..ad373ea4cf491b0ee1fd886fe9b7074febfc2d85 100644 (file)
@@ -30,9 +30,9 @@ struct ctl_class
   };
 
 void ctl_stack_clear (void);
-void ctl_stack_push (struct ctl_class *, void *private);
-void *ctl_stack_top (struct ctl_class *);
-void *ctl_stack_search (struct ctl_class *);
+void ctl_stack_push (const struct ctl_class *, void *private);
+void *ctl_stack_top (const struct ctl_class *);
+void *ctl_stack_search (const struct ctl_class *);
 void ctl_stack_pop (void *);
 bool ctl_stack_is_empty (void);