* mpicoder.c, mpi-inline.h, mpi-inv.c, mpiutil.c, mpih-div.c,

mpi-internal.h, mpi-scan.c: Edit all preprocessor instructions to remove
whitespace before the '#'.  This is not required by C89, but there are
some compilers out there that don't like it.
This commit is contained in:
David Shaw 2003-05-24 17:54:56 +00:00
parent c84fdfbe62
commit e152598106
8 changed files with 83 additions and 85 deletions

View File

@ -1,3 +1,10 @@
2003-05-24 David Shaw <dshaw@jabberwocky.com>
* mpicoder.c, mpi-inline.h, mpi-inv.c, mpiutil.c, mpih-div.c,
mpi-internal.h, mpi-scan.c: Edit all preprocessor instructions to
remove whitespace before the '#'. This is not required by C89,
but there are some compilers out there that don't like it.
2003-04-25 David Shaw <dshaw@jabberwocky.com>
* config.links: Re-disable assembler on Darwin. Darwin 6.5 broke

View File

@ -124,5 +124,4 @@ mpihelp_sub( mpi_ptr_t res_ptr, mpi_ptr_t s1_ptr, mpi_size_t s1_size,
return cy;
}
#endif /*G10_MPI_INLINE_H*/

View File

@ -265,6 +265,3 @@ mpi_invm( MPI x, MPI a, MPI n )
mpi_free(v);
#endif
}

View File

@ -444,4 +444,3 @@ mpi_set_buffer( MPI a, const byte *buffer, unsigned nbytes, int sign )
a->nlimbs = i;
assert( i == nlimbs );
}

View File

@ -533,5 +533,3 @@ mpihelp_divmod_1( mpi_ptr_t quot_ptr,
return r;
}
}

View File

@ -185,7 +185,6 @@ mpi_free_limb_space( mpi_ptr_t a )
}
#endif
m_free(a);
}
@ -468,4 +467,3 @@ mpi_swap( MPI a, MPI b)
tmp = *a; *a = *b; *b = tmp;
}