brintos

brintos / linux-shallow public Read only

0
0
Text · 347 B · 55fa644 Raw
14 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2#ifndef _TOOLS_LINUX_TIME64_H3#define _TOOLS_LINUX_TIME64_H4 5#define MSEC_PER_SEC	1000L6#define USEC_PER_MSEC	1000L7#define NSEC_PER_USEC	1000L8#define NSEC_PER_MSEC	1000000L9#define USEC_PER_SEC	1000000L10#define NSEC_PER_SEC	1000000000L11#define FSEC_PER_SEC	1000000000000000LL12 13#endif /* _LINUX_TIME64_H */14