]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - libf2c/libF77/h_sign.c
Imported gcc-4.4.3
[msp430-gcc.git] / libf2c / libF77 / h_sign.c
diff --git a/libf2c/libF77/h_sign.c b/libf2c/libF77/h_sign.c
deleted file mode 100644 (file)
index 7b06c15..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-#include "f2c.h"
-
-#ifdef KR_headers
-shortint h_sign(a,b) shortint *a, *b;
-#else
-shortint h_sign(shortint *a, shortint *b)
-#endif
-{
-shortint x;
-x = (*a >= 0 ? *a : - *a);
-return( *b >= 0 ? x : -x);
-}