os_kernel_lab/related_info/lab4/some-exercises/call.c
2016-04-11 00:58:26 +08:00

6 lines
55 B
C

int addtwo(int a)
{
int x = 2;
return a + x;
}