diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2012-04-14 06:01:43 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2012-04-14 06:01:43 +0000 |
commit | 39016485a7467e1fdc62b4e77c8cecba061ecdf4 (patch) | |
tree | 8613786a5fe755a03054390640cd111f3a999494 /gnu/lib/libf2c/libF77/qbitshft.c | |
parent | 7282a200e9a6f3b23c4b910ccd116363d52619f4 (diff) |
remove libf2c, hasn't been built since it was moved to ports in 2010.
ok miod@ espie@
Diffstat (limited to 'gnu/lib/libf2c/libF77/qbitshft.c')
-rw-r--r-- | gnu/lib/libf2c/libF77/qbitshft.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/gnu/lib/libf2c/libF77/qbitshft.c b/gnu/lib/libf2c/libF77/qbitshft.c deleted file mode 100644 index ce740edde19..00000000000 --- a/gnu/lib/libf2c/libF77/qbitshft.c +++ /dev/null @@ -1,7 +0,0 @@ -#include "f2c.h" - -longint -qbit_shift (longint a, integer b) -{ - return b >= 0 ? a << b : (longint) ((ulongint) a >> -b); -} |