xref: /haiku/src/system/boot/platform/openfirmware/real_time_clock.h (revision 8195a5a835117ab2da405e0d477153570b75d921)
1 /*
2  * Copyright 2006, Ingo Weinhold <bonefish@cs.tu-berlin.de>.
3  * All rights reserved. Distributed under the terms of the MIT License.
4  */
5 
6 #ifndef OPENFIRMWARE_REAL_TIME_CLOCK_H
7 #define OPENFIRMWARE_REAL_TIME_CLOCK_H
8 
9 #include <SupportDefs.h>
10 
11 #ifdef __cplusplus
12 extern "C" {
13 #endif
14 
15 status_t init_real_time_clock(void);
16 
17 #ifdef __cplusplus
18 }   // extern "C"
19 #endif
20 
21 #endif	/* OPENFIRMWARE_REAL_TIME_CLOCK_H */
22