1#include <stddef.h>
2void foo (int* a, int x, int y) {
3 for (size_t i = 0; i < 100; ++i)
4 a[i] = x + y;
5}