aboutsummaryrefslogtreecommitdiff
path: root/libf2c/libF77/qbitshft.c
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>2002-06-01 01:53:53 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>2002-06-01 01:53:53 +0000
commit4d85a6fea685603493f2a4dbcfd36d6fd25fbe26 (patch)
tree693a2481f59e62982389a205d2b15b5bfa3e0b2b /libf2c/libF77/qbitshft.c
parent1e730c5ca76832a10c16300f12ab0447ca1b07a1 (diff)
downloadgcc-4d85a6fea685603493f2a4dbcfd36d6fd25fbe26.zip
gcc-4d85a6fea685603493f2a4dbcfd36d6fd25fbe26.tar.gz
gcc-4d85a6fea685603493f2a4dbcfd36d6fd25fbe26.tar.bz2
*: Delete KR_headers cruft.
* libF77/*: Delete KR_headers cruft. * libI77/*: Likewise. * libU77/*: Likewise. From-SVN: r54132
Diffstat (limited to 'libf2c/libF77/qbitshft.c')
-rw-r--r--libf2c/libF77/qbitshft.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/libf2c/libF77/qbitshft.c b/libf2c/libF77/qbitshft.c
index 87fffb9..03ab5f2 100644
--- a/libf2c/libF77/qbitshft.c
+++ b/libf2c/libF77/qbitshft.c
@@ -1,11 +1,7 @@
#include "f2c.h"
longint
-#ifdef KR_headers
-qbit_shift(a, b) longint a; integer b;
-#else
qbit_shift(longint a, integer b)
-#endif
{
return b >= 0 ? a << b : (longint)((ulongint)a >> -b);
}