Added debugOutput for crt0.

This commit is contained in:
Branimir Karadžić
2018-02-18 21:13:29 -08:00
parent 93403f9fdc
commit 0e54f1a398
4 changed files with 36 additions and 24 deletions

View File

@@ -15,7 +15,6 @@
#include "platform.h"
#include "config.h"
#include "macros.h"
#include "debug.h"
///
#define BX_COUNTOF(_x) sizeof(bx::COUNTOF_REQUIRES_ARRAY_ARGUMENT(_x) )

View File

@@ -6,7 +6,7 @@
#ifndef BX_DEBUG_H_HEADER_GUARD
#define BX_DEBUG_H_HEADER_GUARD
#include "bx.h"
#include "string.h"
namespace bx
{
@@ -16,6 +16,9 @@ namespace bx
///
void debugOutput(const char* _out);
///
void debugOutput(const StringView& _str);
///
void debugPrintfVargs(const char* _format, va_list _argList);