6 lines
76 B
C
6 lines
76 B
C
|
#include "mavl.h"
|
||
|
|
||
|
void mavl_freeptr(void *ptr){
|
||
|
free( *((void**)ptr) );
|
||
|
}
|