xref: /haiku/src/libs/compat/freebsd_network/clock.c (revision 372b901dfeada686207d00bbcce456f748bbda12)
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