#define printf(...) tt_printf(__VA_ARGS__)
#define STDERR_LOG(...) tt_printf(__VA_ARGS__)
#elif defined(_MSC_VER) || defined(__BORLANDC__) || defined(__USLC__)
+#include <stdarg.h>
+
void STDERR_LOG(const char* format, ...) {
va_list args;
va_start(args, format);
typedef unsigned char uint8_t;
typedef unsigned short uint16_t;
typedef unsigned int uint32_t;
-typedef signed char int8_t;
-typedef signed short int16_t;
-typedef signed int int32_t;
+typedef char int8_t;
+typedef short int16_t;
+typedef int int32_t;
#define INT32_MAX 0x7fffffff