shithub: aubio

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