1 /*
2  * Copyright (c) 2017 Oticon A/S
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 #ifndef TRIVIAL_XO_H
7 #define TRIVIAL_XO_H
8 
9 #include "xo_if.h"
10 #include "bs_types.h"
11 
12 #ifdef __cplusplus
13 extern "C" {
14 #endif
15 
16 void trivial_xo_set_clock_drift(double cdrift);
17 void trivial_xo_set_toffset(bs_time_t args_tOffset);
18 
19 #ifdef __cplusplus
20 }
21 #endif
22 
23 #endif
24