added kiss_fft_cleanup

updated Makefiles for long and simd targets
This commit is contained in:
Mark Borgerding
2005-07-09 03:42:07 +00:00
parent 553bd4f13a
commit 3b5dfee961
6 changed files with 38 additions and 7 deletions

View File

@ -99,6 +99,13 @@ void kiss_fft_stride(kiss_fft_cfg cfg,const kiss_fft_cpx *fin,kiss_fft_cpx *fout
buffer and can be simply free()d when no longer needed*/
#define kiss_fft_free free
/*
Cleans up some memory that gets managed internally. Not necessary to call, but it might clean up
your compiler output to call this before you exit.
*/
void kiss_fft_cleanup(void);
#ifdef __cplusplus
}
#endif