#include <stdio.h>

static int foo (void *p) 
{
	(void)p;
	return 0;
}

int main(void) {
	int i;
	foo (&i);
	return 0;
}
