chiark / gitweb /
[PATCH] added klibc version 0.82 (cvs tree) to the udev tree.
[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 }