shithub: aubio

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