Module: sems
Branch: master
Commit: 04bdfd40034d0e5efd53c523551d1e16b3dbccff
URL:    
http://git.sip-router.org/cgi-bin/gitweb.cgi/sems/?a=commit;h=04bdfd40034d0e5efd53c523551d1e16b3dbccff

Author: Stefan Sayer <[email protected]>
Committer: Stefan Sayer <[email protected]>
Date:   Fri Jul 22 13:33:28 2011 +0200

fixed include order (for GNU_SOURCE)

---

 core/plug-in/g722/g722.c |   14 ++++++--------
 1 files changed, 6 insertions(+), 8 deletions(-)

diff --git a/core/plug-in/g722/g722.c b/core/plug-in/g722/g722.c
index f665ba2..97eaf3e 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 <string.h>
-#include <stdlib.h>
-
 #include "amci.h"
 #include "codecs.h"
-#include <math.h>
-typedef unsigned char uint8_t;
-typedef signed short int16_t;
-
 
 #include <spandsp.h>
 #include "../../log.h"
 
+#include <math.h>
+#include <string.h>
+#include <stdlib.h>
+
+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 );

_______________________________________________
Semsdev mailing list
[email protected]
http://lists.iptel.org/mailman/listinfo/semsdev

Reply via email to