aboutsummaryrefslogtreecommitdiff
path: root/src/blog/2023-11-14-test-visibility-c-macro/main2.c
blob: b7c3ef13d2cef3f0dbe78f555c9bda51fbded448 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdio.h>

int foo(int x, int y)
{
	return 42*x - 69*y;
}

int main() {
	int z = foo(10, 1);
	printf("%d\n", z);
	return 0;
}

Generated with cgit - Back to sebastiano.tronto.net