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