void loop (int how_many, float *input) { int i; for (i = 0; i < how_many; i++) { input[i] = input[i] * input[i]; } return; }