shithub: aubio

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