Lines Matching defs:anything
52 * about endianness, but that's not something lint can do anything about. The
358 } anything;
364 static anything *p_anything;
379 /* expect+1: warning: illegal combination of 'pointer to union typedef anything' and 'pointer to double', op '=' [124] */
381 /* OK, since the union 'anything' has a 'double' member. */
382 p_anything = (anything *)p_double;
383 /* expect+1: warning: illegal combination of 'pointer to double' and 'pointer to union typedef anything', op '=' [124] */
385 /* OK, since the union 'anything' has a 'double' member. */
392 /* expect+1: warning: illegal combination of 'pointer to function(void) returning void' and 'pointer to union typedef anything', op '=' [124] */
393 p_function = (anything *)p_int;
395 /* expect+2: warning: converting 'pointer to function(void) returning void' to 'pointer to union typedef anything' is questionable [229] */
396 /* expect+1: warning: illegal combination of 'pointer to function(void) returning void' and 'pointer to union typedef anything', op '=' [124] */
397 p_function = (anything *)p_function_array->m_function_array[0];