Import libgcrypt 1.5.3.
This commit is contained in:
parent
c12936c5d1
commit
d1307d873a
72 changed files with 11732 additions and 2916 deletions
|
@ -28,8 +28,15 @@
|
|||
#ifndef G10_MPI_INLINE_H
|
||||
#define G10_MPI_INLINE_H
|
||||
|
||||
/* Starting with gcc 4.3 "extern inline" conforms in c99 mode to the
|
||||
c99 semantics. To keep the useful old semantics we use an
|
||||
attribute. */
|
||||
#ifndef G10_MPI_INLINE_DECL
|
||||
#define G10_MPI_INLINE_DECL extern __inline__
|
||||
# ifdef __GNUC_STDC_INLINE__
|
||||
# define G10_MPI_INLINE_DECL extern inline __attribute__ ((__gnu_inline__))
|
||||
# else
|
||||
# define G10_MPI_INLINE_DECL extern __inline__
|
||||
# endif
|
||||
#endif
|
||||
|
||||
G10_MPI_INLINE_DECL mpi_limb_t
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue