HelenOS sources

root/uspace/dist/src/c/demos/hello/hello.c

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. main

typedef int errno_t;
extern errno_t 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;
}

/* [<][>][^][v][top][bottom][index][help] */
HelenOS homepage, sources at GitHub