shithub: aubio

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