Switch types to C99 standard using stdint.h

Add stdint.h header check to ./configure
Add -std=c99 to CFLAGS.
This commit is contained in:
Romuald Conty
2009-05-27 10:13:19 +00:00
parent d32d57f237
commit ab3664b056
15 changed files with 140 additions and 128 deletions

View File

@@ -24,14 +24,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
// #define DEBUG
typedef unsigned char byte;
typedef unsigned char ui8;
typedef unsigned short ui16;
typedef unsigned int ui32;
typedef unsigned long long ui64;
typedef unsigned long ulong;
typedef char i8;
typedef short i16;
typedef int i32;
#define null 0