summaryrefslogtreecommitdiff
path: root/features/macro/mkc_attribute_pure.c
blob: eb67521f0d05fee3cdd6c64b5b2460ed91ff5a5d (plain)
1
2
3
4
5
6
int square(int v) __attribute__ ((pure));

int square(int v)
{
	return v * v;
}