From 686fd1ee9baa6e5700ceeecf801acf62696e8228 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Wed, 22 Apr 2015 19:53:47 -0700 Subject: add-mp-set-intptr patch * mpi/mpi.c (mp_set_intptr, mp_get_intptr): New functions. * mpi/mpi.h (mp_set_intptr, mp_get_intptr): Declared. --- mpi/mpi.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'mpi/mpi.h') diff --git a/mpi/mpi.h b/mpi/mpi.h index c87df54b..c653672e 100644 --- a/mpi/mpi.h +++ b/mpi/mpi.h @@ -94,6 +94,8 @@ void mp_clear_array(mp_int mp[], int count); void mp_zero(mp_int *mp); void mp_set(mp_int *mp, mp_digit d); mp_err mp_set_int(mp_int *mp, long z); +mp_err mp_set_intptr(mp_int *mp, int_ptr_t z); +mp_err mp_get_intptr(mp_int *mp, int_ptr_t *z); /*------------------------------------------------------------------------*/ /* Single digit arithmetic */ -- cgit v1.2.3