921e5a0eb4
From-SVN: r14840
11 lines
131 B
C
11 lines
131 B
C
foo (b, c)
|
|
unsigned b, c;
|
|
{
|
|
return (b << 12) | (c >> 20);
|
|
}
|
|
|
|
main ()
|
|
{
|
|
printf ("0x%x\n", foo (0x11223344, 0xaabbccdd));
|
|
}
|