repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* builtins.def: Break out _Complex math functions into their
[official-gcc.git]
/
libf2c
/
libF77
/
lbitshft.c
blob
bfbb7c018336657af4b03735c24d4884a4b3cc07
1
#include
"f2c.h"
2
3
integer
4
lbit_shift
(
integer a
,
integer b
)
5
{
6
return
b
>=
0
?
a
<<
b
: (
integer
) ((
uinteger
)
a
>> -
b
);
7
}