cutes/drop.c

7 lines
89 B
C
Raw Normal View History

2024-01-25 13:13:42 +00:00
#include "drop.h"
#include "stdlib.h"
void default_drop(void* data) {
free(data);
}