shithub: aubio

ref: e1bfde5b4ebe6465f95565b3f3ba978db22bbf30
dir: /tests/src/test-delnull.c/

View raw version
#include <stdlib.h>
#include <aubio.h>

int main ()
{
  del_fvec(NULL);
  del_lvec(NULL);
  del_cvec(NULL);
  return 0;
}