diff options
author | David Shaw <[email protected]> | 2003-05-24 17:54:56 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2003-05-24 17:54:56 +0000 |
commit | e152598106495a93ca8e895032db4f5b1e4a0d2f (patch) | |
tree | 7421d51802e163ccf2313527df270369039903db /mpi/mpi-internal.h | |
parent | * argparse.c, dotlock.c, fileutil.c, iobuf.c, miscutil.c, (diff) | |
download | gnupg-e152598106495a93ca8e895032db4f5b1e4a0d2f.tar.gz gnupg-e152598106495a93ca8e895032db4f5b1e4a0d2f.zip |
* 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.
Diffstat (limited to '')
-rw-r--r-- | mpi/mpi-internal.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/mpi/mpi-internal.h b/mpi/mpi-internal.h index 60d9e09ee..a99558622 100644 --- a/mpi/mpi-internal.h +++ b/mpi/mpi-internal.h @@ -39,13 +39,13 @@ * checking a 768 and a 1024 bit ElGamal signature. * (wk 22.12.97) */ #ifndef KARATSUBA_THRESHOLD - #define KARATSUBA_THRESHOLD 16 +#define KARATSUBA_THRESHOLD 16 #endif /* The code can't handle KARATSUBA_THRESHOLD smaller than 2. */ #if KARATSUBA_THRESHOLD < 2 - #undef KARATSUBA_THRESHOLD - #define KARATSUBA_THRESHOLD 2 +#undef KARATSUBA_THRESHOLD +#define KARATSUBA_THRESHOLD 2 #endif @@ -151,8 +151,8 @@ typedef int mpi_size_t; /* (must be a signed type) */ /*-- mpiutil.c --*/ #ifdef M_DEBUG - #define mpi_alloc_limb_space(n,f) mpi_debug_alloc_limb_space((n),(f), M_DBGINFO( __LINE__ ) ) - #define mpi_free_limb_space(n) mpi_debug_free_limb_space((n), M_DBGINFO( __LINE__ ) ) +#define mpi_alloc_limb_space(n,f) mpi_debug_alloc_limb_space((n),(f), M_DBGINFO( __LINE__ ) ) +#define mpi_free_limb_space(n) mpi_debug_free_limb_space((n), M_DBGINFO( __LINE__ ) ) mpi_ptr_t mpi_debug_alloc_limb_space( unsigned nlimbs, int sec, const char *info ); void mpi_debug_free_limb_space( mpi_ptr_t a, const char *info ); #else @@ -253,7 +253,7 @@ mpi_limb_t mpihelp_rshift( mpi_ptr_t wp, mpi_ptr_t up, mpi_size_t usize, #endif #ifdef __GNUC__ - #include "mpi-inline.h" +#include "mpi-inline.h" #endif #endif /*G10_MPI_INTERNAL_H*/ |