diff options
Diffstat (limited to 'types.h')
| -rw-r--r-- | types.h | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -98,5 +98,14 @@ typedef struct def_s { struct def_s *next; } def_t; +// +// Structure used for tracking allocated ops, which must be freed when the file +// is freed. +// +typedef struct allocated_op_s { + struct allocated_op_s *next; + vm_op_t op; +} allocated_op_t; + #endif // vim: ts=4 sw=0 et cino=L2,l1,(0,W4,m1 |
