shithub: aubio

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