~linaro-toolchain-dev/cortex-strings/trunk

1 by Michael Hope
Pulled in the initial versions
1
#include <stddef.h>
2
3
int spawniis(int (*fun)(int, int, size_t), int runs, int a, int b, size_t c)
4
{
5
    int result;
6
    int i;
7
8
    for (i = 0; i != runs; i++)
9
    {
10
        result = fun(a, b, c);
11
    }
12
13
    return result;
14
}