shithub: aubio

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