1  /* Test the fix for PR91926.  */
       2  
       3  /* Contributed by José Rui Faustino de Sousa  <jrfsousa@hotmail.com> */
       4  
       5  #include <stdlib.h>
       6  
       7  int ifb_echo(void*);
       8  
       9  int ifb_echo(void *this)
      10  {
      11    return this == NULL ? 1 : 2;
      12  }