]> pd.if.org Git - liblfds/blob - liblfds/liblfds6.1.0/liblfds610/src/lfds610_liblfds/lfds610_liblfds_aligned_free.c
Initial import (all versions, including the new 7.1.0)
[liblfds] / liblfds / liblfds6.1.0 / liblfds610 / src / lfds610_liblfds / lfds610_liblfds_aligned_free.c
1 #include "lfds610_liblfds_internal.h"
2
3
4
5
6
7 /****************************************************************************/
8 void lfds610_liblfds_aligned_free( void *memory )
9 {
10   assert( memory != NULL );
11
12   // TRD : the "void *" stored above memory points to the root of the allocation
13   lfds610_abstraction_free( *( (void **) memory - 1 ) );
14
15   return;
16 }
17