10 lines
No EOL
115 B
C
10 lines
No EOL
115 B
C
// test-return.c
|
|
int return_test(int x)
|
|
{
|
|
return x;
|
|
}
|
|
|
|
int main(int argc, int argv)
|
|
{
|
|
return return_test(42);
|
|
} |