OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [gdb-5.0/] [gdb/] [testsuite/] [gdb.base/] [sum.c] - Blame information for rev 1774

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 106 markom
/* This is a sample program for the HP/DDE debugger. */
2
#include <stdio.h>
3
 
4
#ifdef PROTOTYPES
5
int sum(int *list, int low, int high)
6
#else
7
int sum(list, low, high)
8
int *list, low, high;
9
#endif
10
    {
11
        int i = 0, s = 0;
12
        for (i = low; i <= high; i++)
13
            s += list[i];
14
        return(s);
15
    }

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.