Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
strace
/
f1cadc2675e666703ca51c986daed34513aca8c8
/
.
/
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