mirror of
https://github.com/ptitSeb/box86.git
synced 2024-11-27 17:00:39 +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;
|
|
}
|