Merge branch 'develop' of aubio.org:/git/aubio/aubio into wavetable
[aubio.git] / tests / src / test-delnull.c
1 #include <stdlib.h>
2 #include <aubio.h>
3
4 // Because aubio does not check for double free, this program will crash.
5 // Programs that call these functions should check for null pointers.
6
7 int main ()
8 {
9   del_fvec(NULL);
10   del_lvec(NULL);
11   del_cvec(NULL);
12   return 0;
13 }