diff options
| author | Tom Musta <tommusta@gmail.com> | 2014-04-21 15:54:50 -0500 |
|---|---|---|
| committer | Alexander Graf <agraf@suse.de> | 2014-06-16 13:24:28 +0200 |
| commit | 426d9a1a59e07ebcde3ec55c8b7997e44ce34d2d (patch) | |
| tree | bc2503c0e08cac7cd0f6a4897dbf8f50a9e2bac1 /libdecnumber/dpd/decimal32.c | |
| parent | 9b7a14b0640110cbb1017c4b701b96dddc659d37 (diff) | |
| download | focaccia-qemu-426d9a1a59e07ebcde3ec55c8b7997e44ce34d2d.tar.gz focaccia-qemu-426d9a1a59e07ebcde3ec55c8b7997e44ce34d2d.zip | |
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 <tommusta@gmail.com> Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'libdecnumber/dpd/decimal32.c')
| -rw-r--r-- | libdecnumber/dpd/decimal32.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libdecnumber/dpd/decimal32.c b/libdecnumber/dpd/decimal32.c index f8d30e6304..095ab75654 100644 --- a/libdecnumber/dpd/decimal32.c +++ b/libdecnumber/dpd/decimal32.c @@ -50,8 +50,6 @@ /* Utility tables and routines [in decimal64.c] */ extern const uInt COMBEXP[32], COMBMSD[32]; -extern const uShort DPD2BIN[1024]; -extern const uShort BIN2DPD[1000]; extern const uByte BIN2CHAR[4001]; extern void decDigitsToDPD(const decNumber *, uInt *, Int); |