]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - tools/build/feature/test-libbfd.c
perf build: Move feature checks code under tools/build
[karo-tx-linux.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 }