-
+ 22B8E75D35ABC0449E048A2B18461B17D7EF5A6A00A56FE1A16BD89B526B8F6F19DEA196A258D6E3760F84B1124D7D40FA28D1B6C5BC4932BE11B9D91C7077EC
mpi/mpi-inline.c
(0 . 0)(1 . 35)
7028 /* mpi-inline.c
7029 * Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
7030 *
7031 * This file is part of GnuPG.
7032 *
7033 * GnuPG is free software; you can redistribute it and/or modify
7034 * it under the terms of the GNU General Public License as published by
7035 * the Free Software Foundation; either version 3 of the License, or
7036 * (at your option) any later version.
7037 *
7038 * GnuPG is distributed in the hope that it will be useful,
7039 * but WITHOUT ANY WARRANTY; without even the implied warranty of
7040 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
7041 * GNU General Public License for more details.
7042 *
7043 * You should have received a copy of the GNU General Public License
7044 * along with this program; if not, see <http://www.gnu.org/licenses/>.
7045 */
7046
7047 #include <config.h>
7048 #include <stdio.h>
7049 #include <stdlib.h>
7050
7051 /* put the inline functions as real functions into the lib */
7052 #define G10_MPI_INLINE_DECL
7053
7054 #include "mpi-internal.h"
7055
7056 /* always include the header becuase it is only
7057 * included by mpi-internal if __GCC__ is defined but we
7058 * need it here in all cases and the above definition of
7059 * of the macro allows us to do so
7060 */
7061 #include "mpi-inline.h"
7062