Include the fortran library sources from GCC 3.4.4.
[dragonfly.git] / contrib / gcc-3.4 / libf2c / libF77 / lbitshft.c
1 #include "f2c.h"
2
3 integer
4 lbit_shift (integer a, integer b)
5 {
6   return b >= 0 ? a << b : (integer) ((uinteger) a >> -b);
7 }