diff --git a/test.txt b/test.txt index 1d4aeee..7efecae 100755 --- a/test.txt +++ b/test.txt @@ -1,14 +1,18 @@ -#!./main -*- C -*- +#!./main #include -int foo(int a) +int foo(void) { return 42; } int main(int argc, char **argv) { - printf("hello, world %d\n", foo(argc)); + printf("hello, world %d\n", foo()); return 0; } + +// Local Variables: +// mode: c +// End: