mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 13:47:56 +00:00
parent
7f0c3eee6d
commit
941a71346a
@ -71,6 +71,11 @@ namespace Genode {
|
||||
*/
|
||||
void print(Output &output, unsigned long);
|
||||
|
||||
/**
|
||||
* Print unsigned long long value
|
||||
*/
|
||||
void print(Output &output, unsigned long long);
|
||||
|
||||
/**
|
||||
* Print unsigned integer value
|
||||
*/
|
||||
|
@ -58,6 +58,12 @@ void Genode::print(Output &output, unsigned long value)
|
||||
}
|
||||
|
||||
|
||||
void Genode::print(Output &output, unsigned long long value)
|
||||
{
|
||||
out_unsigned<unsigned long long>(value, 10, 0, [&] (char c) { output.out_char(c); });
|
||||
}
|
||||
|
||||
|
||||
void Genode::print(Output &output, long value)
|
||||
{
|
||||
out_signed<long>(value, 10, [&] (char c) { output.out_char(c); });
|
||||
|
Loading…
Reference in New Issue
Block a user