From c03242552746fbb30331262c4c6b257a83fd4eb4 Mon Sep 17 00:00:00 2001 From: Torbjorn Granlund Date: Sun, 7 Dec 2008 18:20:46 +0100 Subject: Change _PROTO => __GMP_PROTO. --- memory.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'memory.c') diff --git a/memory.c b/memory.c index df8edfe19..42a9834da 100644 --- a/memory.c +++ b/memory.c @@ -24,10 +24,10 @@ along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. */ #include "gmp-impl.h" -void * (*__gmp_allocate_func) _PROTO ((size_t)) = __gmp_default_allocate; -void * (*__gmp_reallocate_func) _PROTO ((void *, size_t, size_t)) +void * (*__gmp_allocate_func) __GMP_PROTO ((size_t)) = __gmp_default_allocate; +void * (*__gmp_reallocate_func) __GMP_PROTO ((void *, size_t, size_t)) = __gmp_default_reallocate; -void (*__gmp_free_func) _PROTO ((void *, size_t)) = __gmp_default_free; +void (*__gmp_free_func) __GMP_PROTO ((void *, size_t)) = __gmp_default_free; /* Default allocation functions. In case of failure to allocate/reallocate -- cgit v1.2.1