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