blob: 3aa0793610496d4091904986329d45ce3d351045 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* SPDX-License-Identifier: LGPL-2.1-only */
/*
* The Rin Library – time module
*
* Copyright (C) 2017 Gediminas Jakutis
*/
#ifndef LIBRIN_TIME_PRIVATE_INCLUDED
#define LIBRIN_TIME_PRIVATE_INCLUDED
static const long tv_nsec_max = 999999999l;
static const long tv_usec_max = 999999l;
#endif /* LIBRIN_TIME_PRIVATE_INCLUDED */
|