URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gdb-7.1/] [gdb/] [testsuite/] [gdb.base/] [sum.c] - Rev 252
Go to most recent revision | Compare with Previous | Blame | View Log
/* This is a sample program for the HP/DDE debugger. */ #include <stdio.h> #ifdef PROTOTYPES int sum(int *list, int low, int high) #else int sum(list, low, high) int *list, low, high; #endif { int i = 0, s = 0; for (i = low; i <= high; i++) s += list[i]; return(s); }
Go to most recent revision | Compare with Previous | Blame | View Log