actube/src/cw/mavl_freeptr.c
2022-07-28 01:38:06 +02:00

6 lines
76 B
C

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