check core psp, mqx/source/psp/cortex_m , there's psptypes header file where are typedef's .
#ifndef USE_32BIT_TYPES
/* Type for the CPU's natural size */
typedef uint_32 _mqx_uint, _PTR_ _mqx_uint_ptr;
typedef int_32 _mqx_int, _PTR_ _mqx_int_ptr;
/* How big a data pointer is on this processor */
typedef uint_32 _psp_data_addr, _PTR_ _psp_data_addr_ptr;
/* How big a code pointer is on this processor */
typedef uint_32 _psp_code_addr, _PTR_ _psp_code_addr_ptr;
/* Maximum type */
typedef uint_32 _mqx_max_type, _PTR_ _mqx_max_type_ptr;
/* _mem_size is equated to the a type that can hold the maximum data address */
typedef uint_32 _mem_size, _PTR_ _mem_size_ptr;
/* Used for file sizes. */
typedef uint_32 _file_size;
typedef int_32 _file_offset;
#else
#define _mqx_uint uint_32
#define _mqx_uint_ptr uint_32_ptr
#define _mqx_int int_32
#define _mqx_int_ptr int_32_ptr
#define _psp_data_addr uint_32
#define _psp_code_addr uint_32
#define _mqx_max_type uint_32
#define _mem_size uint_32
#endif