haxchi/dsrom/vwii_loader/sd_loader/include/stdint.h

15 lines
240 B
C
Raw Normal View History

#ifndef _STDINT_WRAP_H
#define _STDINT_WRAP_H
2017-01-17 01:12:27 +01:00
#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