lfn
serial
ticket/834-toolchain-update
topic/msim-upgrade
topic/simplify-dev-export
Last change
on this file since 68a0d60 was 09ab0a9a, checked in by Jiri Svoboda <jiri@…>, 7 years ago |
Fix vertical spacing with new Ccheck revision.
|
-
Property mode
set to
100644
|
File size:
244 bytes
|
Rev | Line | |
---|
[b7fd2a0] | 1 | extern errno_t putchar(char);
|
---|
[3508000] | 2 |
|
---|
| 3 | #define TERMINATOR '!'
|
---|
| 4 |
|
---|
[1433ecda] | 5 | int 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 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.