summaryrefslogtreecommitdiff
path: root/Kernel/kstdio.h
blob: 00509e320ccec6ee0373850177e52080e15d4d5b (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

extern "C" {
int dbgprintf(const char* fmt, ...);
int kprintf(const char* fmt, ...);
int ksprintf(char* buf, const char* fmt, ...);
}

#ifndef USERLAND
#    define printf dbgprintf
#endif