diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2001-10-23 03:17:29 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2001-10-23 03:17:29 +0000 |
commit | e5969ba63a7204d50185d661343db648862616b0 (patch) | |
tree | 90687e0dba64c8ca48edd60cb90c824ad7163a67 /libiberty/hex.c | |
parent | aeb76991de5a1a2d628685c01d66871459f8fc4f (diff) | |
download | gcc-e5969ba63a7204d50185d661343db648862616b0.zip gcc-e5969ba63a7204d50185d661343db648862616b0.tar.gz gcc-e5969ba63a7204d50185d661343db648862616b0.tar.bz2 |
libiberty.h (hex_init): Revert delete.
include:
* libiberty.h (hex_init): Revert delete.
libiberty:
* hex.c (hex_init): Provide empty stub.
From-SVN: r46421
Diffstat (limited to 'libiberty/hex.c')
-rw-r--r-- | libiberty/hex.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libiberty/hex.c b/libiberty/hex.c index 1c1d292..3ba04ba 100644 --- a/libiberty/hex.c +++ b/libiberty/hex.c @@ -20,6 +20,12 @@ Boston, MA 02111-1307, USA. */ #include <stdio.h> /* for EOF */ #include "libiberty.h" +/* Provided for ABI compatibility. */ +void +hex_init () +{ +} + /* Are we ASCII? */ #if '\n' == 0x0A && ' ' == 0x20 && '0' == 0x30 \ && 'A' == 0x41 && 'a' == 0x61 && '!' == 0x21 \ |