xref: /haiku/src/system/boot/loader/misc.cpp (revision dd2a1e350b303b855a50fd64e6cb55618be1ae6a)
1 /*
2  * Copyright 2010, Ingo Weinhold, ingo_weinhold@gmx.de.
3  * Distributed under the terms of the MIT License.
4  */
5 
6 
7 #include <KernelExport.h>
8 
9 #include <string.h>
10 
11 
12 status_t
13 user_memcpy(void* to, const void* from, size_t size)
14 {
15 	memcpy(to, from, size);
16 	return B_OK;
17 }
18 
19 
20 void
21 debugger(const char *message)
22 {
23 	panic(message);
24 }
25