1/*
2 * Copyright 2009 Jonas Sundström, jonas@kirilla.com
3 * All rights reserved. Distributed under the terms of the MIT License.
4 */
5
6
7#include <boot/platform.h>
8#include <boot/stdio.h>
9#include <stdarg.h>
10
11
12void
13panic(const char* format, ...)
14{
15#warning IMPLEMENT panic
16}
17
18
19void
20dprintf(const char* format, ...)
21{
22#warning IMPLEMENT dprintf
23}
24
25
26char*
27platform_debug_get_log_buffer(size_t* _size)
28{
29	return NULL;
30}
31