mirror of
https://github.com/Fennix-Project/Userspace.git
synced 2025-05-28 15:34:26 +00:00
18 lines
356 B
C++
18 lines
356 B
C++
#define UNUSED(x) (void)(x)
|
|
|
|
extern "C" int main(int argc, char *argv[], char *envp[])
|
|
{
|
|
UNUSED(argc);
|
|
UNUSED(argv);
|
|
UNUSED(envp);
|
|
|
|
// unsigned long ret;
|
|
// asm volatile("syscall"
|
|
// : "=a"(ret)
|
|
// : "a"(1), "D"(1)
|
|
// : "rcx", "r11", "memory");
|
|
|
|
// syscall_exit();
|
|
return 0;
|
|
}
|