Merge branch 'master' into v2.1

This commit is contained in:
Mike Pall
2017-06-07 19:39:41 +02:00
3 changed files with 11 additions and 10 deletions

View File

@@ -158,6 +158,12 @@ typedef uint8_t MCode;
typedef uint32_t MCode;
#endif
/* Linked list of MCode areas. */
typedef struct MCLink {
MCode *next; /* Next area. */
size_t size; /* Size of current area. */
} MCLink;
/* Stack snapshot header. */
typedef struct SnapShot {
uint16_t mapofs; /* Offset into snapshot map. */