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