shithub: aubio

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