summaryrefslogtreecommitdiff
path: root/mpfr-gmp.c
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2005-08-18 16:35:19 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2005-08-18 16:35:19 +0000
commitbab5aab404897a12fe1c87734ebf2aa270b9b73b (patch)
tree73ab96f558e7e0b4ef371902ead983189184a0f7 /mpfr-gmp.c
parent8328a51518450ad8ddb86e38e7952e28065ff22a (diff)
downloadmpfr-bab5aab404897a12fe1c87734ebf2aa270b9b73b.tar.gz
Converted tabs to spaces with expand.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@3725 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'mpfr-gmp.c')
-rw-r--r--mpfr-gmp.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/mpfr-gmp.c b/mpfr-gmp.c
index 216f50ac4..cfbcbe50b 100644
--- a/mpfr-gmp.c
+++ b/mpfr-gmp.c
@@ -293,7 +293,7 @@ const struct bases mpfr_bases[257] =
void
mpfr_assert_fail (const char *filename, int linenum,
- const char *expr)
+ const char *expr)
{
if (filename != NULL && filename[0] != '\0')
{
@@ -345,7 +345,7 @@ mpfr_default_allocate (size_t size)
if (ret == NULL)
{
fprintf (stderr, "MPFR: Can't allocate memory (size=%lu)\n",
- (unsigned long) size);
+ (unsigned long) size);
abort ();
}
return ret;
@@ -359,8 +359,8 @@ mpfr_default_reallocate (void *oldptr, size_t old_size, size_t new_size)
if (ret == NULL)
{
fprintf (stderr,
- "MPFR: Can't reallocate memory (old_size=%lu new_size=%lu)\n",
- (unsigned long) old_size, (unsigned long) new_size);
+ "MPFR: Can't reallocate memory (old_size=%lu new_size=%lu)\n",
+ (unsigned long) old_size, (unsigned long) new_size);
abort ();
}
return ret;
@@ -377,7 +377,7 @@ mpfr_default_free (void *blk_ptr, size_t blk_size)
#ifndef MPFR_HAVE_MPN_SUB_NC
mp_limb_t
mpfr_sub_nc (mp_ptr dest, mp_srcptr op1, mp_srcptr op2, mp_size_t s,
- mp_limb_t c)
+ mp_limb_t c)
{
mp_limb_t c2;
c2 = mpn_sub_n (dest, op1, op2, s);