shithub: aubio

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