mirror of
https://github.com/wiiu-env/haxchi.git
synced 2024-11-17 05:39:16 +01:00
15 lines
240 B
C
15 lines
240 B
C
#ifndef _STDINT_WRAP_H
|
|
#define _STDINT_WRAP_H
|
|
|
|
#define int32_t dontcare_int32_t
|
|
#define uint32_t dontcare_uint32_t
|
|
|
|
#include_next <stdint.h>
|
|
|
|
#undef int32_t
|
|
#undef uint32_t
|
|
|
|
typedef signed int int32_t;
|
|
typedef unsigned int uint32_t;
|
|
|
|
#endif |