liblinux/examples/hello.c

8 lines
142 B
C
Raw Permalink Normal View History

2021-12-04 12:16:45 +00:00
#include <liblinux.h>
2021-12-03 14:05:10 +00:00
int main() {
char hellostr[] = "Hello, World!\n";
2021-12-30 20:09:36 +00:00
sys_write(stdout->fd, hellostr, sizeof(hellostr));
2021-12-03 14:05:10 +00:00
return 0;
}