Added an unimplemented __arch_init_time() for PPC.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15443 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2005-12-09 14:09:42 +00:00
parent 5d9789688d
commit 0799002097
2 changed files with 18 additions and 0 deletions

View File

@ -8,5 +8,6 @@ MergeObject os_arch_$(TARGET_ARCH).o :
# systeminfo.c
system_time.S
thread.c
time.c
tls.c
;

View File

@ -0,0 +1,17 @@
/*
* Copyright 2004, Axel Dörfler, axeld@pinc-software.de.
* Distributed under the terms of the MIT License.
*/
#include <libroot_private.h>
#include <real_time_data.h>
#include <arch_cpu.h>
void
__arch_init_time(struct real_time_data *data)
{
// TODO: Implement!
}