shithub: aubio

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