From aab97b38b8ad6d43d7c9f296df663909bd109f06 Mon Sep 17 00:00:00 2001 From: Ian Piumarta Date: Tue, 21 Jan 2025 10:52:21 +0900 Subject: [PATCH] move Emacs mode selection to end --- test.txt | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) 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: