Added Kprint in kernel.h

This commit is contained in:
Alex
2022-10-11 00:59:11 +03:00
parent 9c00c5ec4b
commit ccd2c47beb
2 changed files with 2 additions and 1 deletions

View File

@ -24,7 +24,7 @@ extern "C" int printf_(const char *format, ...);
extern "C" int vprintf_(const char *format, va_list arg);
#endif
void KPrint(const char *format, ...)
EXTERNC void KPrint(const char *format, ...)
{
SMARTLOCK(KernelLock);
Time tm = ReadClock();