From f387b4c0d92856fd28cfcd06979a7b62b0de00fc Mon Sep 17 00:00:00 2001 From: Stefan Sayer Date: Fri, 22 Jul 2011 13:33:28 +0200 Subject: [PATCH] fixed include order (for GNU_SOURCE) --- core/plug-in/g722/g722.c | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/core/plug-in/g722/g722.c b/core/plug-in/g722/g722.c index f665ba26..97eaf3e1 100644 --- a/core/plug-in/g722/g722.c +++ b/core/plug-in/g722/g722.c @@ -18,20 +18,18 @@ License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - -#include -#include - #include "amci.h" #include "codecs.h" -#include -typedef unsigned char uint8_t; -typedef signed short int16_t; - #include #include "../../log.h" +#include +#include +#include + +typedef unsigned char uint8_t; +typedef signed short int16_t; int Pcm16_2_G722NB( unsigned char* out_buf, unsigned char* in_buf, unsigned int size, unsigned int channels, unsigned int rate, long h_codec );