iup-stack/fftw/libbench2/aset.c

11 lines
164 B
C
Raw Permalink Normal View History

2023-02-20 16:44:45 +00:00
/* 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;
}