From e152598106495a93ca8e895032db4f5b1e4a0d2f Mon Sep 17 00:00:00 2001 From: David Shaw Date: Sat, 24 May 2003 17:54:56 +0000 Subject: * 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. --- mpi/mpi-scan.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'mpi/mpi-scan.c') diff --git a/mpi/mpi-scan.c b/mpi/mpi-scan.c index abebe2208..615b9464f 100644 --- a/mpi/mpi-scan.c +++ b/mpi/mpi-scan.c @@ -67,7 +67,7 @@ mpi_putbyte( MPI a, unsigned idx, int xc ) limb = ap[i]; for( j=0; j < BYTES_PER_MPI_LIMB; j++, n++ ) if( n == idx ) { - #if BYTES_PER_MPI_LIMB == 4 +#if BYTES_PER_MPI_LIMB == 4 if( j == 0 ) limb = (limb & 0xffffff00) | c; else if( j == 1 ) @@ -76,7 +76,7 @@ mpi_putbyte( MPI a, unsigned idx, int xc ) limb = (limb & 0xff00ffff) | (c<<16); else limb = (limb & 0x00ffffff) | (c<<24); - #elif BYTES_PER_MPI_LIMB == 8 +#elif BYTES_PER_MPI_LIMB == 8 if( j == 0 ) limb = (limb & 0xffffffffffffff00) | c; else if( j == 1 ) @@ -93,9 +93,9 @@ mpi_putbyte( MPI a, unsigned idx, int xc ) limb = (limb & 0xff00ffffffffffff) | (c<<48); else limb = (limb & 0x00ffffffffffffff) | (c<<56); - #else - #error please enhance this function, its ugly - i know. - #endif +#else +#error please enhance this function, its ugly - i know. +#endif if( a->nlimbs <= i ) a->nlimbs = i+1; ap[i] = limb; -- cgit