/* This struct used to be public, but is now private to the runtime. *//*** Definition of a selector. Selectors themselves are not unique, but** the sel_id is a unique identifier.*/structobjc_selector{void*sel_id;constchar*sel_types;};inlinestaticBOOLsel_eq(SELs1,SELs2){if(s1==0||s2==0)returns1==s2;elsereturns1->sel_id==s2->sel_id;}