shithub: aubio

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