void yay(double x[][128])
{
	x[5][5] = 3; //we like things in threes
}

int main(void)
{
	double y[128][128];
	yay(y);
	return 0;
}
