7 lines
89 B
C
7 lines
89 B
C
#include "drop.h"
|
|
#include "stdlib.h"
|
|
|
|
void default_drop(void* data) {
|
|
free(data);
|
|
}
|