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

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