1 /* 2 * Copyright 2005, Ingo Weinhold <bonefish@cs.tu-berlin.de>. 3 * All rights reserved. Distributed under the terms of the MIT License. 4 */ 5 6 #include <OS.h> 7 8 #include <platform/openfirmware/openfirmware.h> 9 10 bigtime_t 11 system_time(void) 12 { 13 int result = of_milliseconds(); 14 return (result == OF_FAILED ? 0 : bigtime_t(result) * 1000); 15 } 16