Browse Source

Update to patch #33, stdlib.h required on Linux for size_t

pre-master-46
Holger Vogt 7 years ago
parent
commit
eb33388707
  1. 1
      src/maths/fft/fftlib.c

1
src/maths/fft/fftlib.c

@ -3,6 +3,7 @@ lower level fft stuff including routines called in fftext.c and fft2d.c
*******************************************************************/
#include "fftlib.h"
#include <math.h>
#include <stdlib.h>
#define MCACHE (11-(int)(sizeof(double)/8)) // fft's with M bigger than this bust primary cache
// some math constants to 40 decimal places

Loading…
Cancel
Save