#include #include #include #include void OSLog(const ASCII* format, ...) { ASCII buffer[kOSLogBufferSize]; va_list args; va_start(args, format); StringFormatVariadic(buffer, kOSLogBufferSize, format, args); va_end(args); SerialPutString(buffer); }