mirror of
https://github.com/ptitSeb/box64.git
synced 2024-11-23 14:39:57 +00:00
10 lines
509 B
C
10 lines
509 B
C
#include <sys/syscall.h>
|
|
#include <unistd.h>
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
const char msg[] = "Hello x86_64 World!\n";
|
|
syscall(1, STDOUT_FILENO, msg, sizeof(msg)-1);
|
|
return 0;
|
|
}
|