actube/src/cw/mavl_freeptr.c

6 lines
76 B
C

#include "mavl.h"
void mavl_freeptr(void *ptr){
free( *((void**)ptr) );
}