make sure int stays as int

This commit is contained in:
FIX94 2017-01-12 23:09:14 +01:00
parent 6d78599c02
commit bf5e1d92cf
No known key found for this signature in database
GPG Key ID: CE39016A19D8EADA

View File

@ -0,0 +1,11 @@
#ifndef _STDINT_WRAP_H
#define _STDINT_WRAP_H
#include <../../powerpc-eabi/include/stdint.h>
#define int32_t my_int32_t
#define uint32_t my_uint32_t
typedef signed int int32_t;
typedef unsigned int uint32_t;
#endif