diff --git a/capsule/capsule-malloc.h b/capsule/capsule-malloc.h index 8a81583c128f72a991d867fabff501469efc7631..9a760376b73fce547ea21a807863f69921a1e6fc 100644 --- a/capsule/capsule-malloc.h +++ b/capsule/capsule-malloc.h @@ -197,8 +197,6 @@ typedef struct _heap_info #define chunk_at_offset(p, s) ((mchunkptr) (((char *) (p)) + (s))) -typedef struct malloc_state *mstate; - #define NONCONTIGUOUS_BIT (2U) #define contiguous(M) (((M)->flags & NONCONTIGUOUS_BIT) == 0) #define noncontiguous(M) (((M)->flags & NONCONTIGUOUS_BIT) != 0)