Sign in
android-kvm
/
linux
/
53e87e3cdc155f20c3417b689df8d2ac88d79576
/
.
/
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
;
}