diff options
Diffstat (limited to 'scope.h')
-rw-r--r-- | scope.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -11,9 +11,9 @@ void scopeinit(void); struct scope *mkscope(struct scope *); struct scope *delscope(struct scope *); -struct declaration; -void scopeputdecl(struct scope *, const char *, struct declaration *); -struct declaration *scopegetdecl(struct scope *, const char *, _Bool); +struct decl; +void scopeputdecl(struct scope *, const char *, struct decl *); +struct decl *scopegetdecl(struct scope *, const char *, _Bool); struct type; void scopeputtag(struct scope *, const char *, struct type *); |