]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blob - tools/build/feature/test-libbfd.c
ipv4: convert dst_metrics.refcnt from atomic_t to refcount_t
[mirror_ubuntu-artful-kernel.git] / tools / build / feature / test-libbfd.c
1 #include <bfd.h>
2
3 extern int printf(const char *format, ...);
4
5 int main(void)
6 {
7 char symbol[4096] = "FieldName__9ClassNameFd";
8 char *tmp;
9
10 tmp = bfd_demangle(0, symbol, 0);
11
12 printf("demangled symbol: {%s}\n", tmp);
13
14 return 0;
15 }