chiark / gitweb /
[PATCH] sync with latest version of klibc (0.107)
[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 }