X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/55c2d5b5314f3007202c67003eb99d7d92dedb7e..a76bc40240b725442f23738d4d5603cb10d4baf6:/src/xbt/mmalloc/mmprivate.h diff --git a/src/xbt/mmalloc/mmprivate.h b/src/xbt/mmalloc/mmprivate.h index 41717886b8..5396e557b1 100644 --- a/src/xbt/mmalloc/mmprivate.h +++ b/src/xbt/mmalloc/mmprivate.h @@ -103,14 +103,6 @@ typedef union { } free; } malloc_info; -/* List of blocks allocated with `mmemalign' (or `mvalloc'). */ - -struct alignlist { - struct alignlist *next; - void *aligned; /* The address that mmemaligned returned. */ - void *exact; /* The address that malloc returned. */ -}; - /* Doubly linked lists of free fragments. */ struct list { struct list *next;