annotate src/fftw-3.3.3/libbench2/aset.c @ 67:f1a9b270e043

List of exclusions from the appimage repo
author Chris Cannam
date Thu, 28 Jun 2018 15:29:59 +0100
parents 37bf6b4a2645
children
rev   line source
Chris@10 1 /* not worth copyrighting */
Chris@10 2
Chris@10 3 #include "bench.h"
Chris@10 4
Chris@10 5 void aset(bench_real *A, int n, bench_real x)
Chris@10 6 {
Chris@10 7 int i;
Chris@10 8 for (i = 0; i < n; ++i)
Chris@10 9 A[i] = x;
Chris@10 10 }