diff --git a/src/system/libroot/os/arch/ppc/Jamfile b/src/system/libroot/os/arch/ppc/Jamfile index cd3fbb3134..7bddfbcf5b 100644 --- a/src/system/libroot/os/arch/ppc/Jamfile +++ b/src/system/libroot/os/arch/ppc/Jamfile @@ -8,5 +8,6 @@ MergeObject os_arch_$(TARGET_ARCH).o : # systeminfo.c system_time.S thread.c + time.c tls.c ; diff --git a/src/system/libroot/os/arch/ppc/time.c b/src/system/libroot/os/arch/ppc/time.c new file mode 100644 index 0000000000..343a9c5251 --- /dev/null +++ b/src/system/libroot/os/arch/ppc/time.c @@ -0,0 +1,17 @@ +/* + * Copyright 2004, Axel Dörfler, axeld@pinc-software.de. + * Distributed under the terms of the MIT License. + */ + + +#include +#include +#include + + +void +__arch_init_time(struct real_time_data *data) +{ + // TODO: Implement! +} +