]> rtime.felk.cvut.cz Git - ulut.git/blob - ulut/ul_htimdefault.c
Add missing #include
[ulut.git] / ulut / ul_htimdefault.c
1 /*******************************************************************
2   uLan Utilities Library - C library of basic reusable constructions
3
4   ul_htimdefault.h  - hierarchical timer compile time default ops
5
6   (C) Copyright 2003-2009 by Pavel Pisa - Originator
7
8   The uLan utilities library can be used, copied and modified under
9   next licenses
10     - GPL - GNU General Public License
11     - LGPL - GNU Lesser General Public License
12     - MPL - Mozilla Public License
13     - and other licenses added by project originators
14   Code can be modified and re-distributed under any combination
15   of the above listed licenses. If contributor does not agree with
16   some of the licenses, he/she can delete appropriate line.
17   Warning, if you delete all lines, you are not allowed to
18   distribute source code and/or binaries utilizing code.
19   
20   See files COPYING and README for details.
21
22  *******************************************************************/
23
24 #include <string.h>
25 #include "ul_htimer.h"
26
27 #ifdef UL_HTIMER_WITH_MSTIME
28
29 #ifdef UL_HTIMER_WITH_STD_TYPE
30
31 extern ul_root_htimer_ops_t ul_mstime_root_htimer_ops;
32
33 ul_root_htimer_ops_t *ul_root_htimer_ops_compile_default =
34                                       &ul_mstime_root_htimer_ops;
35
36 #endif /*UL_HTIMER_WITH_STD_TYPE*/
37
38 #endif /*UL_HTIMER_WITH_MSTIME*/