mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-01 03:57:15 +02:00
16 lines
273 B
C++
16 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);
|
|
|
|
}
|