blob: a35a49284a610572bca28ff0bddb2ed00b2a4443 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "other.h"
#include <stdio.h>
int func()
{
int x = 1;
int y = 2;
INT_Z = 3;
StructInHeader mystruct;
printf("x: %d\n", x);
printf("y: %d\n", y);
printf("x+y: %d\n", x + y);
return x + y;
}
|