1 2 3 4 5 6 7
#include "f2c.h" longint qbit_shift(longint a, integer b) { return b >= 0 ? a << b : (longint)((ulongint)a >> -b); }