10 lines
198 B
C
10 lines
198 B
C
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||
|
#ifndef __LIBPERF_INTERNAL_EVSEL_H
|
||
|
#define __LIBPERF_INTERNAL_EVSEL_H
|
||
|
|
||
|
struct perf_evsel {
|
||
|
struct list_head node;
|
||
|
};
|
||
|
|
||
|
#endif /* __LIBPERF_INTERNAL_EVSEL_H */
|