URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [gdb-5.3/] [gdb/] [testsuite/] [gdb.base/] [ending-run.c] - Rev 1181
Go to most recent revision | Compare with Previous | Blame | View Log
/* Test program for <next-at-end> and * <leaves-core-file-on-quit> bugs. */ #include <stdio.h> #include <stdlib.h> #ifdef PROTOTYPES int callee (int x) #else int callee( x ) int x; #endif { int y = x * x; return (y - 2); } int main() { int *p; int i; p = (int *) malloc( 4 ); for (i = 1; i < 10; i++) { printf( "%d ", callee( i )); fflush (stdout); } printf( " Goodbye!\n" ); fflush (stdout); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log