URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [compile/] [20050119-1.c] - Rev 745
Go to most recent revision | Compare with Previous | Blame | View Log
void write_char(char); int len(char*); void f(char *a) { int col = 0; int i; void wchar(char c) { if (c == '\t') { do { wchar(' '); } while ((col%8)!=0); } else { write_char (c); col++; } } for(i =0;i<len(a);i++) { wchar(*a); } }
Go to most recent revision | Compare with Previous | Blame | View Log