#include <stdio.h>

void foo(long* l)
{
	printf("%ld", *l);
}

int main(void) {
	short bar = 0;
	foo(&bar);
	return 0;
}
