mirror of
https://github.com/opnsense/src.git
synced 2026-02-14 16:23:25 -05:00
7 lines
123 B
C
7 lines
123 B
C
#include "f2c.h"
|
|
|
|
longint
|
|
qbit_shift (longint a, integer b)
|
|
{
|
|
return b >= 0 ? a << b : (longint) ((ulongint) a >> -b);
|
|
}
|