blob: 1ac9fc89eb1692b5100ccb432a75ab26cbeee011 [file] [log] [blame]
/* Test the fix for PR91926. */
/* Contributed by José Rui Faustino de Sousa <jrfsousa@hotmail.com> */
#include <stdlib.h>
int ifb_echo(void*);
int ifb_echo(void *this)
{
return this == NULL ? 1 : 2;
}