xref: /haiku/src/system/boot/platform/openfirmware/support.cpp (revision 2600324b57fa31cdea1627d584d314f2a579c4a8)
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