1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-27 11:55:06 +00:00
freebsd/contrib/libf2c/libF77/qbitshft.c
2003-07-11 03:42:19 +00:00

8 lines
123 B
C

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