shithub: aubio

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