From 426d9a1a59e07ebcde3ec55c8b7997e44ce34d2d Mon Sep 17 00:00:00 2001 From: Tom Musta Date: Mon, 21 Apr 2014 15:54:50 -0500 Subject: libdecnumber: Eliminate redundant declarations Eliminate redundant declarations of symbols DPD2BIN and BIN2DPD in various .c source files. These symbols are already declared in decDPD.h and thus will trigger 'redundant redeclaration of ?XXX?' warnings, which, of course, may fail QEMU compilation. Signed-off-by: Tom Musta Signed-off-by: Alexander Graf --- libdecnumber/dpd/decimal128.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'libdecnumber/dpd/decimal128.c') diff --git a/libdecnumber/dpd/decimal128.c b/libdecnumber/dpd/decimal128.c index 8f8e9835f5..7551b7caaf 100644 --- a/libdecnumber/dpd/decimal128.c +++ b/libdecnumber/dpd/decimal128.c @@ -50,8 +50,6 @@ /* Utility routines and tables [in decimal64.c] */ extern const uInt COMBEXP[32], COMBMSD[32]; -extern const uShort DPD2BIN[1024]; -extern const uShort BIN2DPD[1000]; /* [not used] */ extern const uByte BIN2CHAR[4001]; extern void decDigitsFromDPD(decNumber *, const uInt *, Int); -- cgit v1.2.3