summaryrefslogtreecommitdiff
path: root/tal-notreent.c
diff options
context:
space:
mode:
authortege <tege@gmplib.org>2006-04-05 20:02:24 +0200
committertege <tege@gmplib.org>2006-04-05 20:02:24 +0200
commitf876c2e27b518690403474d322b5d5cfce9dd068 (patch)
treedf5334329729089301114ab7004396e65dc6ca97 /tal-notreent.c
parent3a8f8836b241c17db5abffc22b3deb3ea975c168 (diff)
downloadgmp-f876c2e27b518690403474d322b5d5cfce9dd068.tar.gz
(__gmp_tmp_mark): Add "struct" tag for tmp_marker.
(__gmp_tmp_free): Likewise.
Diffstat (limited to 'tal-notreent.c')
-rw-r--r--tal-notreent.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tal-notreent.c b/tal-notreent.c
index 7895f6307..6d2048a1e 100644
--- a/tal-notreent.c
+++ b/tal-notreent.c
@@ -98,7 +98,7 @@ __gmp_tmp_alloc (unsigned long size)
__gmp_tmp_free can later be used to reclaim all subsequently allocated
storage. */
void
-__gmp_tmp_mark (tmp_marker *mark)
+__gmp_tmp_mark (struct tmp_marker *mark)
{
mark->which_chunk = current;
mark->alloc_point = current->alloc_point;
@@ -106,7 +106,7 @@ __gmp_tmp_mark (tmp_marker *mark)
/* Free everything allocated since <mark> was assigned by __gmp_tmp_mark */
void
-__gmp_tmp_free (tmp_marker *mark)
+__gmp_tmp_free (struct tmp_marker *mark)
{
while (mark->which_chunk != current)
{