mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-06 04:45:05 +00:00
11 lines
164 B
C
11 lines
164 B
C
|
/* not worth copyrighting */
|
||
|
|
||
|
#include "libbench2/bench.h"
|
||
|
|
||
|
void aset(bench_real *A, int n, bench_real x)
|
||
|
{
|
||
|
int i;
|
||
|
for (i = 0; i < n; ++i)
|
||
|
A[i] = x;
|
||
|
}
|