source: mainline/uspace/dist/src/c/demos/hello/hello.c@ 1abcf1d

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 1abcf1d was 1433ecda, checked in by Jiri Svoboda <jiri@…>, 8 years ago

Fix cstyle: make ccheck-fix and commit only files where all the changes are good.

  • Property mode set to 100644
File size: 245 bytes
RevLine 
[b7fd2a0]1extern errno_t putchar(char);
[3508000]2
3#define TERMINATOR '!'
4
[1433ecda]5int main(void)
6{
[3508000]7 /* Prints "hello" to the standard output. */
8 putchar('h');
9 putchar('e');
10 putchar('l');
11 putchar('l');
12 putchar('o');
13 putchar(TERMINATOR);
14 putchar('\n');
15 return 0;
16}
17
Note: See TracBrowser for help on using the repository browser.