Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0
0002 #include <traceevent/trace-seq.h>
0003 
0004 int main(void)
0005 {
0006     int rv = 0;
0007     struct trace_seq s;
0008     trace_seq_init(&s);
0009     rv += !(s.state == TRACE_SEQ__GOOD);
0010     trace_seq_destroy(&s);
0011     return rv;
0012 }