diff options
author | Torbjorn Granlund <tege@gmplib.org> | 2010-11-10 16:28:01 +0100 |
---|---|---|
committer | Torbjorn Granlund <tege@gmplib.org> | 2010-11-10 16:28:01 +0100 |
commit | 8bd3c97538d43ab04b6ec662dfccb815561f234a (patch) | |
tree | 8e52373e3c8be0e51c9991968f3c9164dd4dfcee /mpf/cmp_ui.c | |
parent | b90bca4c9e1221ced136be6ddb09811ff75e660a (diff) | |
download | gmp-8bd3c97538d43ab04b6ec662dfccb815561f234a.tar.gz |
Make it possible to compile GMP with g++.
Diffstat (limited to 'mpf/cmp_ui.c')
-rw-r--r-- | mpf/cmp_ui.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mpf/cmp_ui.c b/mpf/cmp_ui.c index 33f418c73..5e5ed00ef 100644 --- a/mpf/cmp_ui.c +++ b/mpf/cmp_ui.c @@ -21,7 +21,7 @@ along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. */ #include "gmp-impl.h" int -mpf_cmp_ui (mpf_srcptr u, unsigned long int vval) +mpf_cmp_ui (mpf_srcptr u, unsigned long int vval) __GMP_NOTHROW { mp_srcptr up; mp_size_t usize; |