| Index: silk/NSQ.c
 | 
| diff --git a/silk/NSQ.c b/silk/NSQ.c
 | 
| index 4f2b7fe53efde6d24816ca0a0688638bce7ec352..cf5b3fd54765a867dfbb31ebf7f8e333c027f3f4 100644
 | 
| --- a/silk/NSQ.c
 | 
| +++ b/silk/NSQ.c
 | 
| @@ -32,7 +32,7 @@ POSSIBILITY OF SUCH DAMAGE.
 | 
|  #include "main.h"
 | 
|  #include "stack_alloc.h"
 | 
|  
 | 
| -static inline void silk_nsq_scale_states(
 | 
| +static OPUS_INLINE void silk_nsq_scale_states(
 | 
|      const silk_encoder_state *psEncC,           /* I    Encoder State                   */
 | 
|      silk_nsq_state      *NSQ,                   /* I/O  NSQ state                       */
 | 
|      const opus_int32    x_Q3[],                 /* I    input in Q3                     */
 | 
| @@ -46,7 +46,7 @@ static inline void silk_nsq_scale_states(
 | 
|      const opus_int      signal_type             /* I    Signal type                     */
 | 
|  );
 | 
|  
 | 
| -static inline void silk_noise_shape_quantizer(
 | 
| +static OPUS_INLINE void silk_noise_shape_quantizer(
 | 
|      silk_nsq_state      *NSQ,                   /* I/O  NSQ state                       */
 | 
|      opus_int            signalType,             /* I    Signal type                     */
 | 
|      const opus_int32    x_sc_Q10[],             /* I                                    */
 | 
| @@ -172,7 +172,7 @@ void silk_NSQ(
 | 
|  /***********************************/
 | 
|  /* silk_noise_shape_quantizer  */
 | 
|  /***********************************/
 | 
| -static inline void silk_noise_shape_quantizer(
 | 
| +static OPUS_INLINE void silk_noise_shape_quantizer(
 | 
|      silk_nsq_state      *NSQ,                   /* I/O  NSQ state                       */
 | 
|      opus_int            signalType,             /* I    Signal type                     */
 | 
|      const opus_int32    x_sc_Q10[],             /* I                                    */
 | 
| @@ -370,7 +370,7 @@ static inline void silk_noise_shape_quantizer(
 | 
|      silk_memcpy( NSQ->sLPC_Q14, &NSQ->sLPC_Q14[ length ], NSQ_LPC_BUF_LENGTH * sizeof( opus_int32 ) );
 | 
|  }
 | 
|  
 | 
| -static inline void silk_nsq_scale_states(
 | 
| +static OPUS_INLINE void silk_nsq_scale_states(
 | 
|      const silk_encoder_state *psEncC,           /* I    Encoder State                   */
 | 
|      silk_nsq_state      *NSQ,                   /* I/O  NSQ state                       */
 | 
|      const opus_int32    x_Q3[],                 /* I    input in Q3                     */
 | 
| 
 |