1 struct foo {
2   void *entry[40];
3 } __attribute__ ((aligned(32)));
4 
foo(struct foo * ptr,int idx,void * pointer)5 int foo (struct foo *ptr, int idx, void *pointer)
6 {
7   ptr->entry[idx] = pointer;
8   return 0;
9 }
10