1 struct ops { 2 void(*foo)(void); 3 void(*bind_class)(void *, unsigned int, unsigned long); 4 int(*bar)(int); 5 }; 6 reg(struct ops * o)7 void reg(struct ops* o) { (void)o; } 8