aboutsummaryrefslogtreecommitdiffstats
path: root/test/testFuncs2.h
blob: e376c535e9fc025b42d3a065d269e214ec5e8ab7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
extern int a[];

extern int b[] = {1, 2, 3, 4, 5, 6};

int c[2][3] = {1, 2, 3, 4, 5, 6};

int d[2][3] = {{1, 2, 3}, {4, 5, 6}};

static void test33(void);

void testFunc4()
{
	/*do shit*/
}

testFunc5( void)
{

}