Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
strace
/
649ee4b3703a3c7c47bd4286a53c36c4ae77b4a3
/
.
/
xlat.h
blob: 28f7402770e2c22eb40dc43ca1fd5dc69c94c7bc [
file
] [
log
] [
blame
]
#ifndef
STRACE_XLAT_H
struct
xlat
{
unsigned
int
val
;
const
char
*
str
;
};
# define XLAT(x) { x, #x }
# define XLAT_END { 0, 0 }
#endif