Deleted Added
full compact
bignum.h (78828) bignum.h (130561)
1/* bignum.h-arbitrary precision integers
2 Copyright 1987, 1992 Free Software Foundation, Inc.
3
4 This file is part of GAS, the GNU Assembler.
5
6 GAS is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)

--- 32 unchanged lines hidden (view full) ---

41typedef unsigned short LITTLENUM_TYPE;
42
43/* JF truncated this to get around a problem with GCC */
44#define LOG_TO_BASE_2_OF_10 (3.3219280948873623478703194294893901758651)
45/* WARNING: I haven't checked that the trailing digits are correct! */
46
47/* lengths are in sizeof(littlenum)s */
48
1/* bignum.h-arbitrary precision integers
2 Copyright 1987, 1992 Free Software Foundation, Inc.
3
4 This file is part of GAS, the GNU Assembler.
5
6 GAS is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)

--- 32 unchanged lines hidden (view full) ---

41typedef unsigned short LITTLENUM_TYPE;
42
43/* JF truncated this to get around a problem with GCC */
44#define LOG_TO_BASE_2_OF_10 (3.3219280948873623478703194294893901758651)
45/* WARNING: I haven't checked that the trailing digits are correct! */
46
47/* lengths are in sizeof(littlenum)s */
48
49int bignum_copy PARAMS ((LITTLENUM_TYPE * in, int in_length,
50 LITTLENUM_TYPE * out, int out_length));
49int bignum_copy (LITTLENUM_TYPE * in, int in_length,
50 LITTLENUM_TYPE * out, int out_length);
51
52/* end of bignum.h */
51
52/* end of bignum.h */