#include <stdio.h>

void * foo(){
	return -1;	
}
int main(void) {
	int *p = (int *) foo();
	printf("%d\n", p);
	printf("%u\n", p);
	
	return 0;
}
