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