DEBSOURCES
Skip Quicknav
sources / fftw3 / 3.3.2-3.1 / libbench2 / aset.c
12345678910
/* not worth copyrighting */ #include "bench.h" void aset(bench_real *A, int n, bench_real x) { int i; for (i = 0; i < n; ++i) A[i] = x; }