summaryrefslogtreecommitdiff
path: root/mpf/get_str.c
diff options
context:
space:
mode:
authortege <tege@gmplib.org>2005-05-18 15:39:59 +0200
committertege <tege@gmplib.org>2005-05-18 15:39:59 +0200
commit85d3ff30728f215e6601f701ae03addf4eab69f7 (patch)
tree40fa89fb5ae60d161e015f2690e7fbc4f584b362 /mpf/get_str.c
parenta3d00ad3dbee97a09e3bb641a0d7dfcbe2d437ca (diff)
downloadgmp-85d3ff30728f215e6601f701ae03addf4eab69f7.tar.gz
Remove TMP_XXXX marker arguments.
Diffstat (limited to 'mpf/get_str.c')
-rw-r--r--mpf/get_str.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mpf/get_str.c b/mpf/get_str.c
index a5be33583..59f458502 100644
--- a/mpf/get_str.c
+++ b/mpf/get_str.c
@@ -122,7 +122,7 @@ mpf_get_str (char *dbuf, mp_exp_t *exp, int base, size_t n_digits, mpf_srcptr u)
const char *num_to_text;
size_t alloc_size = 0;
char *dp;
- TMP_DECL (marker);
+ TMP_DECL;
up = PTR(u);
un = ABSIZ(u);
@@ -166,7 +166,7 @@ mpf_get_str (char *dbuf, mp_exp_t *exp, int base, size_t n_digits, mpf_srcptr u)
goto done;
}
- TMP_MARK (marker);
+ TMP_MARK;
/* Allocate temporary digit space. We can't put digits directly in the user
area, since we generate more digits than requested. (We allocate
@@ -302,7 +302,7 @@ mpf_get_str (char *dbuf, mp_exp_t *exp, int base, size_t n_digits, mpf_srcptr u)
n_digits++;
}
- TMP_FREE (marker);
+ TMP_FREE;
done:
/* If the string was alloced then resize it down to the actual space