mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-19 17:37:24 +00:00
14 lines
93 B
C
14 lines
93 B
C
|
|
||
|
|
||
|
static int foo(int);
|
||
|
|
||
|
static int foo(C)
|
||
|
char C;
|
||
|
{
|
||
|
return C;
|
||
|
}
|
||
|
|
||
|
void test() {
|
||
|
foo(7);
|
||
|
}
|