aboutsummaryrefslogtreecommitdiffstats
path: root/test/testFuncs2.c
blob: 0bbc2cad2c0f477ae7736ad1f12e14d1555c3844 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#include "testFuncs2.h"

static void test33(void)
{
	short int a;
	long int b;

	b = (int)a;
}

void testfunc1(void)
{
	unsigned char a;
	unsigned char b;

	b =  a;
}

testfunc2(void)
{
	int a;
	int b;
	int sum;

	sum = a + b;
}

void testfunc3()
{
	int a;
	int b;
	int c;

	/*do stuff*/
}

int testfunc6(void)
{
	int a;
	int b;
	return ();
}

int testfunc7(void)
{
	int a;
	int b;
	return;
}