From f876c2e27b518690403474d322b5d5cfce9dd068 Mon Sep 17 00:00:00 2001 From: tege Date: Wed, 5 Apr 2006 20:02:24 +0200 Subject: (__gmp_tmp_mark): Add "struct" tag for tmp_marker. (__gmp_tmp_free): Likewise. --- tal-notreent.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tal-notreent.c') 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 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) { -- cgit v1.2.1