btfdump 0.0.4

BTF introspection tool
Documentation
1
2
3
4
5
6
7
8
enum T {V=0};
typedef void (*T)();

int main() {
	static enum T t1 = V;
	static T t5 = 0;
	return 0;
}