summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/c/Issue_3985.c
blob: 033e5bb22d5336dfd5580950384c678cf9394250 (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;
}