_hello.cpp 131 B

1234567
  1. extern "C" int puts(const char*);
  2. extern "C" int elf_entry()
  3. {
  4. puts("Home, where you are supposed to be...");
  5. return 0;
  6. }