1// bindgen-flags: --impl-debug
2struct perf_event_attr {
3
4    /*
5     * Major type: hardware/software/tracepoint/etc.
6     */
7    unsigned int			type;
8
9    float a;
10    union {
11        int b;
12        int c;
13    };
14};
15