Binary conversion of an int32 to a uint32. This is equivalent in C to typecasting an int to an unsigned int.
int int32ToUint32(int d) { __int32[0] = d; return __int32ToUint32[0]; }