From b218160ff2e2678c67c6677d40309a70fea3c4dc Mon Sep 17 00:00:00 2001 From: anon <anon@anon.anon> Date: Tue, 10 Dec 2024 20:39:01 +0100 Subject: [PATCH] Added 'C_C++/process_renaming.c' --- C_C++/process_renaming.c | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 C_C++/process_renaming.c diff --git a/C_C++/process_renaming.c b/C_C++/process_renaming.c new file mode 100644 index 0000000..3027433 --- /dev/null +++ b/C_C++/process_renaming.c @@ -0,0 +1,5 @@ +// @BAKE gcc $@ -o $*.out +signed main(int argc, char * argv[]) { + strcpy(argv[0], "rabbit"); + while (1) { ; } +}