aboutsummaryrefslogtreecommitdiff
path: root/test/kr-function-argument-promotion.c
blob: 7592da12d7a1c04e308eb282ae2b2e897efcac58 (plain)
1
2
3
4
5
6
7
8
9
10
int f(c)
	unsigned char c;
{
	return c;
}

int main(void)
{
	return f(0x100);
}