Sign in
kernel
/
pub
/
scm
/
linux
/
kernel
/
git
/
trace
/
linux-trace
/
2938431e9338bf4e8d434513d3a5832d64c0fa8b
/
.
/
tools
/
build
/
feature
/
test-libtraceevent.c
blob: 416b11ffd4b4fc128df092a438fec58bf0c4da65 [
file
] [
log
] [
blame
]
// SPDX-License-Identifier: GPL-2.0
#include
<traceevent/trace-seq.h>
int
main
(
void
)
{
int
rv
=
0
;
struct
trace_seq s
;
trace_seq_init
(&
s
);
rv
+=
!(
s
.
state
==
TRACE_SEQ__GOOD
);
trace_seq_destroy
(&
s
);
return
rv
;
}