chiark / gitweb /
e57cd05a5035363f1472c4d5ca9dab8fb2679a02
[elogind.git] / klibc / klibc / tests / microhello.c
1 #include <stdio.h>
2 #include <unistd.h>
3
4 int main(void)
5 {
6   const char hello[] = "Hello, World!\n";
7   _fwrite(hello, sizeof hello-1, stdout);
8   return 0;
9 }