ladybird/Kernel/kstdio.h

12 lines
198 B
C
Raw Normal View History

#pragma once
2019-04-10 22:49:11 +02:00
extern "C" {
int dbgprintf(const char *fmt, ...);
int kprintf(const char *fmt, ...);
int ksprintf(char* buf, const char *fmt, ...);
}
2019-01-10 22:52:14 +01:00
2019-01-13 04:31:16 +01:00
#ifndef USERLAND
2019-01-10 22:52:14 +01:00
#define printf dbgprintf
2019-01-13 04:31:16 +01:00
#endif