shithub: aubio

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