/* 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 */