aboutsummaryrefslogtreecommitdiffstats
path: root/test_f.c
blob: 8811f1ed13c167b1efa351c75f2417d409107d98 (plain)
1
2
3
4
5
double f(double x) {
	static int counter = 0;
	++counter;
	return counter * x;
}