8 lines
150 B
C
8 lines
150 B
C
struct ops {
|
|
void(*foo)(void);
|
|
void(*bind_class)(void *, unsigned int, unsigned long);
|
|
int(*bar)(int);
|
|
};
|
|
|
|
void reg(struct ops* o) { (void)o; }
|