mirror of
https://github.com/RGBCube/serenity
synced 2025-06-01 10:48:13 +00:00
15 lines
273 B
C++
15 lines
273 B
C++
/*
|
|
* Copyright (c) 2021, Marcin Undak <mcinek@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace Prekernel {
|
|
|
|
// FIXME: to be replaced by real implementation from AK/Format.h
|
|
void dbgln(char const* text);
|
|
void warnln(char const* text);
|
|
|
|
}
|