base_toString.h included into base.h

This commit is contained in:
Timerix22 2023-03-09 18:59:18 +06:00
parent 33eb4302c4
commit 430b6267d1
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,5 @@
#include "kprintf.h" #include "kprintf.h"
#include "../base/base.h" #include "../base/base.h"
#include "../base/type_system/base_toString.h"
#if defined(_WIN64) || defined(_WIN32) #if defined(_WIN64) || defined(_WIN32)
#include <windows.h> #include <windows.h>

View File

@ -4,6 +4,8 @@
extern "C" { extern "C" {
#endif #endif
#include "../base/type_system/base_toString.h"
// cross-platform printf analog // cross-platform printf analog
void kprintf(const char* format, ...); void kprintf(const char* format, ...);