ref: 49e40ccad7a9c75fdbcacea745f2b9c9e838c4c1
dir: /tests/src/test-delnull.c/
#include <stdlib.h>
#include <aubio.h>
// Because aubio does not check for double free, this program will crash.
// Programs that call these functions should check for null pointers.
int main ()
{
del_fvec(NULL);
del_lvec(NULL);
del_cvec(NULL);
return 0;
}