mirror of
https://github.com/mmueller41/genode.git
synced 2026-01-21 12:32:56 +01:00
27 lines
628 B
C++
27 lines
628 B
C++
/*
|
|
* \brief Kernel-specific raw-output back end
|
|
* \author Norman Feske
|
|
* \date 2016-03-08
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2016-2017 Genode Labs GmbH
|
|
*
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
* under the terms of the GNU Affero General Public License version 3.
|
|
*/
|
|
|
|
#ifndef _INCLUDE__BASE__INTERNAL__RAW_WRITE_STRING_H_
|
|
#define _INCLUDE__BASE__INTERNAL__RAW_WRITE_STRING_H_
|
|
|
|
#include <util/string.h>
|
|
#include "foc_assert.h"
|
|
|
|
namespace Genode {
|
|
|
|
void raw_write_string(char const *str) {
|
|
Fiasco::outstring(const_cast<char *>(str)); }
|
|
}
|
|
|
|
#endif /* _INCLUDE__BASE__INTERNAL__RAW_WRITE_STRING_H_ */
|