haxchi/dsrom/vwii_loader/sd_loader/include/stdint.h
FIX94 8492589988
-added vwii boot option to cbhc
-made installer more stable on exit
2017-01-13 02:52:57 +01:00

11 lines
217 B
C

#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