aboutsummaryrefslogtreecommitdiff
path: root/util/romcc/tests/simple_test9.c
blob: e8df1b9afb9e650216760d9875e6c690b0390ca8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
void main(void)
{
	static const char msg[] = "hello world\r\n";
	char *str;
	char ch;
	str = msg;
	do {
		ch = *str++;
	} while(ch);
}