gcc/libf2c/libF77/qbitshft.c

8 lines
121 B
C
Raw Normal View History

#include "f2c.h"
longint
qbit_shift(longint a, integer b)
{
return b >= 0 ? a << b : (longint)((ulongint)a >> -b);
}