1 /* not worth copyrighting */
2 
3 #include "libbench2/bench.h"
4 
aset(bench_real * A,int n,bench_real x)5 void aset(bench_real *A, int n, bench_real x)
6 {
7      int i;
8      for (i = 0; i < n; ++i)
9 	  A[i] = x;
10 }
11