1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

* 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-21 21:25:31 +00:00
parent 88b7e52b42
commit 628e98785a
8 changed files with 83 additions and 88 deletions

View file

@ -1,3 +1,10 @@
2003-05-21 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-23 David Shaw <dshaw@jabberwocky.com> 2003-04-23 David Shaw <dshaw@jabberwocky.com>
* config.links: Put back proper copyright line. * config.links: Put back proper copyright line.
@ -397,7 +404,6 @@ Mon Feb 16 13:00:27 1998 Werner Koch (wk@isil.d.shuttle.de)
* config.links : Add detection of m68k cpus * config.links : Add detection of m68k cpus
Copyright 1998, 1999, 2000, 2001, 2003 Free Software Foundation, Inc. Copyright 1998, 1999, 2000, 2001, 2003 Free Software Foundation, Inc.
This file is free software; as a special exception the author gives This file is free software; as a special exception the author gives
@ -407,5 +413,3 @@ Mon Feb 16 13:00:27 1998 Werner Koch (wk@isil.d.shuttle.de)
This file is distributed in the hope that it will be useful, but This file is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY, to the extent permitted by law; without even the WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

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; return cy;
} }
#endif /*G10_MPI_INLINE_H*/ #endif /*G10_MPI_INLINE_H*/

View file

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

View file

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

View file

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

View file

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