xref: /openbmc/linux/tools/include/linux/time64.h (revision b2441318)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _TOOLS_LINUX_TIME64_H
3 #define _TOOLS_LINUX_TIME64_H
4 
5 #define MSEC_PER_SEC	1000L
6 #define USEC_PER_MSEC	1000L
7 #define NSEC_PER_USEC	1000L
8 #define NSEC_PER_MSEC	1000000L
9 #define USEC_PER_SEC	1000000L
10 #define NSEC_PER_SEC	1000000000L
11 #define FSEC_PER_SEC	1000000000000000LL
12 
13 #endif /* _LINUX_TIME64_H */
14