Index: uspace/dist/src/c/demos/hello/hello.c
===================================================================
--- uspace/dist/src/c/demos/hello/hello.c	(revision 35080007b5e2ea5f69df99d4c2e943ea09b801fb)
+++ uspace/dist/src/c/demos/hello/hello.c	(revision 35080007b5e2ea5f69df99d4c2e943ea09b801fb)
@@ -0,0 +1,16 @@
+extern int putchar(char);
+
+#define TERMINATOR '!'
+
+int main(void) {
+	/* Prints "hello" to the standard output. */
+	putchar('h');
+	putchar('e');
+	putchar('l');
+	putchar('l');
+	putchar('o');
+	putchar(TERMINATOR);
+	putchar('\n');
+	return 0;
+}
+
