xref: /linux/tools/perf/util/clockid.h (revision 5ea5880764cbb164afb17a62e76ca75dc371409d)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __PERF_CLOCKID_H
3 #define __PERF_CLOCKID_H
4 
5 #include <time.h>
6 
7 struct option;
8 int parse_clockid(const struct option *opt, const char *str, int unset);
9 
10 const char *clockid_name(clockid_t clk_id);
11 
12 #endif
13