921e5a0eb4
From-SVN: r14840
10 lines
82 B
C
10 lines
82 B
C
foo (x, c)
|
|
{
|
|
return x << -c;
|
|
}
|
|
|
|
main ()
|
|
{
|
|
printf ("%x\n", foo (0xf05, -4));
|
|
}
|