shithub: aubio

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