Skip to content
Snippets Groups Projects
Commit 05acb73e authored by Jean-Marc Valin's avatar Jean-Marc Valin
Browse files

fixed test for cases where M_PI isn't defined

parent 37ab9c66
No related branches found
No related tags found
No related merge requests found
......@@ -5,6 +5,10 @@
#include <stdio.h>
#include "kiss_fft.h"
#ifndef M_PI
#define M_PI 3.141592653
#endif
int ret = 0;
void check(kiss_fft_cpx * in,kiss_fft_cpx * out,int nfft,int isinverse)
......
......@@ -6,6 +6,10 @@
#include "mdct.h"
#include "stack_alloc.h"
#ifndef M_PI
#define M_PI 3.141592653
#endif
int ret = 0;
void check(kiss_fft_scalar * in,kiss_fft_scalar * out,int nfft,int isinverse)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment