nvramtool: 64bit safe CBFS handling
[coreboot.git] / util / romcc / tests / simple_test9.c
1
2
3 void main(void)
4 {
5         static const char msg[] = "hello world\r\n";
6         char *str;
7         char ch;
8         str = msg;
9         do {
10                 ch = *str++;
11         } while(ch);
12 }