1 /* Test a simple callback as a struct member 2 * that takes a pointer to a struct parent as 3 * argument 4 * gcc -gctf -c test-callback2.c -o test-callback2.o 5 */ 6 struct s0 7 { 8 int (*mem_fun)(struct s0 *); 9 }; 10 11 struct s0 *s0; 12