source:
vendor/gcc/3.3.4/libf2c/libF77/qbitshft.c
| Last change on this file was 1391, checked in by , 22 years ago | |
|---|---|
|
|
| File size: 123 bytes | |
| Line | |
|---|---|
| 1 | #include "f2c.h" |
| 2 | |
| 3 | longint |
| 4 | qbit_shift (longint a, integer b) |
| 5 | { |
| 6 | return b >= 0 ? a << b : (longint) ((ulongint) a >> -b); |
| 7 | } |
Note:
See TracBrowser
for help on using the repository browser.
