URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gdb-7.1/] [gdb/] [testsuite/] [gdb.hp/] [gdb.compat/] [xdb.c] - Rev 834
Go to most recent revision | Compare with Previous | Blame | View Log
#include <stdio.h> int callee( x ) int x; { int y = x * x; return (y - 2); } main() { int i; for (i = 1; i < 10; i++) { printf( "%d ", callee( i )); } printf( " Goodbye!\n" ); }
Go to most recent revision | Compare with Previous | Blame | View Log