summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/expected/c/10124-Issue_3985.c
blob: 735e40f6b736431c2ee2101f15b3bd5da07d688f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
int keep_symbol()
{
	if (
#ifdef HAVE_BFD_2_34
		bfd_section_size() == 0
#else
		bfd_get_section_size() == 0
#endif
		)
	{
		return false;
	}
	return true;
}