shithub: aubio

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