Compare commits

...

5 Commits
1.2rc3 ... main

Author SHA1 Message Date
513cb1bdf7 [DEV] remove lutin builder 2015-06-15 21:37:13 +02:00
80b05bba9b [BUILD] update new lutin 0.5.3 2015-05-08 22:46:24 +02:00
06d4e5f1af [DEV] set c version 90 2015-02-26 22:24:26 +01:00
347b49d19c [DEV] add gitignore 2015-01-06 22:12:33 +01:00
ea55a278b3 [BUILD] add lutin builder 2015-01-06 21:46:41 +01:00
2 changed files with 16 additions and 0 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
*.pyc
Makefile
*~
*.o

View File

@ -0,0 +1,12 @@
#ifndef __SPEEX_TYPES_H__
#define __SPEEX_TYPES_H__
#include <stdint.h>
typedef int16_t spx_int16_t;
typedef uint16_t spx_uint16_t;
typedef int32_t spx_int32_t;
typedef uint32_t spx_uint32_t;
#endif