]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - libf2c/libF77/qbitshft.c
Imported gcc-4.4.3
[msp430-gcc.git] / libf2c / libF77 / qbitshft.c
diff --git a/libf2c/libF77/qbitshft.c b/libf2c/libF77/qbitshft.c
deleted file mode 100644 (file)
index 87fffb9..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-#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);
-       }