different type for the big integer


git-svn-id: https://asn1c.svn.sourceforge.net/svnroot/asn1c/trunk@435 59561ff5-6e30-0410-9f3c-9617f08c8826
diff --git a/libasn1fix/asn1fix_bitstring.c b/libasn1fix/asn1fix_bitstring.c
index c9a0976..4ef945d 100644
--- a/libasn1fix/asn1fix_bitstring.c
+++ b/libasn1fix/asn1fix_bitstring.c
@@ -103,7 +103,7 @@
 	asn1p_module_t *mod;
 	asn1p_expr_t *V;
 	asn1p_expr_t *bit;
-	asn1_integer_t aI;
+	asn1c_integer_t aI;
 	uint8_t *bitbuf;
 	int bits;
 	int psize;
diff --git a/libasn1fix/asn1fix_constr.c b/libasn1fix/asn1fix_constr.c
index 66e7450..d837f35 100644
--- a/libasn1fix/asn1fix_constr.c
+++ b/libasn1fix/asn1fix_constr.c
@@ -287,7 +287,7 @@
 asn1f_fix_constr_autotag(arg_t *arg) {
 	asn1p_expr_t *expr = arg->expr;
 	asn1p_expr_t *v;
-	asn1_integer_t tag_value = 0;
+	asn1c_integer_t tag_value = 0;
 	int r_value = 0;
 
 	switch(expr->expr_type) {
diff --git a/libasn1fix/asn1fix_crange.c b/libasn1fix/asn1fix_crange.c
index f6e1111..974aa21 100644
--- a/libasn1fix/asn1fix_crange.c
+++ b/libasn1fix/asn1fix_crange.c
@@ -352,7 +352,7 @@
 		 * However, (FROM("abc".."def")) is forbidden.
 		 * See also 47.4.4.
 		 */
-		asn1_integer_t vmin, vmax;
+		asn1c_integer_t vmin, vmax;
 		vmin = vmax = *p;
 		for(; p < pend; p++) {
 			asn1cnst_range_t *nr = _range_new();
diff --git a/libasn1fix/asn1fix_crange.h b/libasn1fix/asn1fix_crange.h
index 9d4763a..0681779 100644
--- a/libasn1fix/asn1fix_crange.h
+++ b/libasn1fix/asn1fix_crange.h
@@ -8,7 +8,7 @@
 		ARE_VALUE,
 	} type;
 	int lineno;	/* Line where the corresponding token was found */
-	asn1_integer_t value;	/* Value when type is ARE_VALUE */
+	asn1c_integer_t value;	/* Value when type is ARE_VALUE */
 } asn1cnst_edge_t;
 
 typedef struct asn1cnst_range_s {
diff --git a/libasn1fix/asn1fix_enum.c b/libasn1fix/asn1fix_enum.c
index 4eb9813..d0c0f25 100644
--- a/libasn1fix/asn1fix_enum.c
+++ b/libasn1fix/asn1fix_enum.c
@@ -7,7 +7,7 @@
 asn1f_fix_enum(arg_t *arg) {
 	asn1p_expr_t *expr = arg->expr;
 	asn1p_expr_t *ev;
-	asn1_integer_t max_value = -1;
+	asn1c_integer_t max_value = -1;
 	int rvalue = 0;
 	asn1p_expr_t *ext_marker = NULL;	/* "..." position */
 	int ret;
@@ -21,7 +21,7 @@
 	 * 1. Scan the enumeration values in search for inconsistencies.
 	 */
 	TQ_FOR(ev, &(expr->members), next) {
-		asn1_integer_t eval;
+		asn1c_integer_t eval;
 
 		if(ev->value)
 			DEBUG("\tItem %s(%s)", ev->Identifier,