diff options
author | Toon Moene <toon@moene.indiv.nluug.nl> | 2004-07-15 18:52:49 +0200 |
---|---|---|
committer | Toon Moene <toon@gcc.gnu.org> | 2004-07-15 16:52:49 +0000 |
commit | 3e4035f83334aa30c12825dc3c3a1fa1b5b2f9f9 (patch) | |
tree | 5f8cfd6717d2fc2edd87b592618718293587582c /libf2c/libF77/h_abs.c | |
parent | 48b456474c69a132da15996c61009e35efa59492 (diff) | |
download | gcc-3e4035f83334aa30c12825dc3c3a1fa1b5b2f9f9.zip gcc-3e4035f83334aa30c12825dc3c3a1fa1b5b2f9f9.tar.gz gcc-3e4035f83334aa30c12825dc3c3a1fa1b5b2f9f9.tar.bz2 |
libf2c: Removed.
2004-07-15 Toon Moene <toon@moene.indiv.nluug.nl>
* libf2c: Removed.
* gcc/gccbug.in: Updated because of libf2c removal.
* maintainer-scripts/gcc_release: Ditto.
From-SVN: r84759
Diffstat (limited to 'libf2c/libF77/h_abs.c')
-rw-r--r-- | libf2c/libF77/h_abs.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/libf2c/libF77/h_abs.c b/libf2c/libF77/h_abs.c deleted file mode 100644 index 9db19ca..0000000 --- a/libf2c/libF77/h_abs.c +++ /dev/null @@ -1,9 +0,0 @@ -#include "f2c.h" - -shortint -h_abs (shortint * x) -{ - if (*x >= 0) - return (*x); - return (-*x); -} |