URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gdb-7.1/] [gdb/] [testsuite/] [gdb.base/] [ending-run.c] - Rev 248
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