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
12status_t
13user_memcpy(void* to, const void* from, size_t size)
14{
15	memcpy(to, from, size);
16	return B_OK;
17}
18
19
20void
21debugger(const char *message)
22{
23	panic(message);
24}
25