shithub: aubio

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