]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - libf2c/libF77/lbitshft.c
Imported gcc-4.4.3
[msp430-gcc.git] / libf2c / libF77 / lbitshft.c
diff --git a/libf2c/libF77/lbitshft.c b/libf2c/libF77/lbitshft.c
deleted file mode 100644 (file)
index 81b0fdb..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-#include "f2c.h"
-
- integer
-#ifdef KR_headers
-lbit_shift(a, b) integer a; integer b;
-#else
-lbit_shift(integer a, integer b)
-#endif
-{
-       return b >= 0 ? a << b : (integer)((uinteger)a >> -b);
-       }