URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gdb-7.1/] [gdb/] [testsuite/] [gdb.base/] [args.c] - Rev 834
Go to most recent revision | Compare with Previous | Blame | View Log
#include <stdio.h> int main (int argc, char **argv) { int i = 0; printf ("%d\n", argc); while (i < argc) printf ("%s\n", argv[i++]); return 0; /* set breakpoint here */ }
Go to most recent revision | Compare with Previous | Blame | View Log