Merge branches 'acpi-soc', 'acpi-misc', 'acpi-pci' and 'device-properties'
[deliverable/linux.git] / tools / build / feature / test-libbfd.c
CommitLineData
3b7646e4
IM
1#include <bfd.h>
2
1e3f30fa
IM
3extern int printf(const char *format, ...);
4
3b7646e4
IM
5int main(void)
6{
1e3f30fa
IM
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
3b7646e4
IM
14 return 0;
15}
This page took 0.122472 seconds and 5 git commands to generate.