xref: /haiku/src/libs/compat/freebsd_network/clock.c (revision a5061ecec55353a5f394759473f1fd6df04890da)
1 /*
2  * Copyright 2018, Haiku, Inc. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 
6 #include <OS.h>
7 #include <compat/sys/kernel.h>
8 
9 
10 int32_t
11 _get_ticks()
12 {
13 	return USEC_2_TICKS(system_time());
14 }
15