mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-12 01:47:00 +02:00
Added dbgln() and warnln() debug functions to help bootstraping. Eventually they are going to be replaced by AK/Format.h implementation.
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(const char* text);
|
|
void warnln(const char* text);
|
|
|
|
}
|