shithub: aubio

ref: 987fb86c97aee37ed3a19ebeee659eec6a7e88e0
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;
}