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