Include stdint.h only where fixed point types are used. Use min/max values from stdint.h.

This commit is contained in:
Jason Heeris
2019-04-05 19:08:00 +11:00
parent a75f08488c
commit d1f9113c51
2 changed files with 7 additions and 7 deletions

View File

@ -43,7 +43,7 @@ extern "C" {
#ifdef FIXED_POINT
#include <sys/types.h>
#include <stdint.h>
# if (FIXED_POINT == 32)
# define kiss_fft_scalar int32_t
# else