shithub: aubio

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