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