File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -39,11 +39,11 @@ typedef enum {PLUS, MINUS} sign;
39
39
typedef struct bc_struct * bc_num ;
40
40
41
41
typedef struct bc_struct {
42
- size_t n_len ; /* The number of digits before the decimal point. */
43
- size_t n_scale ; /* The number of digits after the decimal point. */
44
- char * n_value ; /* The number. Not zero char terminated. */
45
- int n_refs ; /* The number of pointers to this number. */
46
- sign n_sign ;
42
+ size_t n_len ; /* The number of digits before the decimal point. */
43
+ size_t n_scale ; /* The number of digits after the decimal point. */
44
+ char * n_value ; /* The number. Not zero char terminated. */
45
+ unsigned int n_refs ; /* The number of pointers to this number. */
46
+ sign n_sign ;
47
47
} bc_struct ;
48
48
49
49
#ifdef HAVE_CONFIG_H
You can’t perform that action at this time.
0 commit comments