shithub: aubio

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