xref: /linux/tools/perf/util/clockid.h (revision 7a5f1cd22d47f8ca4b760b6334378ae42c1bd24b)
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