coreboot-libre-fam15h-rdimm/util/romcc/tests/simple_test9.c

13 lines
137 B
C
Raw Normal View History

2024-03-04 11:14:53 +01:00
void main(void)
{
static const char msg[] = "hello world\r\n";
char *str;
char ch;
str = msg;
do {
ch = *str++;
} while(ch);
}