File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -39,16 +39,16 @@ typedef enum {PLUS, MINUS} sign;
39
39
typedef struct bc_struct * bc_num ;
40
40
41
41
typedef struct bc_struct {
42
- sign n_sign ;
43
42
size_t n_len ; /* The number of digits before the decimal point. */
44
43
size_t n_scale ; /* The number of digits after the decimal point. */
45
- int n_refs ; /* The number of pointers to this number. */
46
44
char * n_ptr ; /* The pointer to the actual storage.
47
45
If NULL, n_value points to the inside of another number
48
46
(bc_multiply...) and should not be "freed." */
49
47
char * n_value ; /* The number. Not zero char terminated.
50
48
May not point to the same place as n_ptr as
51
49
in the case of leading zeros generated. */
50
+ int n_refs ; /* The number of pointers to this number. */
51
+ sign n_sign ;
52
52
} bc_struct ;
53
53
54
54
#ifdef HAVE_CONFIG_H
You can’t perform that action at this time.
0 commit comments