]> granicus.if.org Git - strace/blob - xlat.h
28f7402770e2c22eb40dc43ca1fd5dc69c94c7bc
[strace] / xlat.h
1 #ifndef STRACE_XLAT_H
2
3 struct xlat {
4         unsigned int val;
5         const char *str;
6 };
7
8 # define XLAT(x) { x, #x }
9 # define XLAT_END { 0, 0 }
10
11 #endif