diff --git a/Include/dsp/utils.h b/Include/dsp/utils.h index 10f9cf20f..a7d718444 100755 --- a/Include/dsp/utils.h +++ b/Include/dsp/utils.h @@ -50,7 +50,9 @@ extern "C" #define SQ(x) ((x) * (x)) -#define ROUND_UP(N, S) ((((N) + (S) - 1) / (S)) * (S)) +#ifndef ROUND_UP + #define ROUND_UP(N, S) ((((N) + (S) - 1) / (S)) * (S)) +#endif /**