-
+ 22B8E75D35ABC0449E048A2B18461B17D7EF5A6A00A56FE1A16BD89B526B8F6F19DEA196A258D6E3760F84B1124D7D40FA28D1B6C5BC4932BE11B9D91C7077EC
mpi/mpi-inline.c
(0 . 0)(1 . 35)
9045 /* mpi-inline.c
9046 * Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
9047 *
9048 * This file is part of GnuPG.
9049 *
9050 * GnuPG is free software; you can redistribute it and/or modify
9051 * it under the terms of the GNU General Public License as published by
9052 * the Free Software Foundation; either version 3 of the License, or
9053 * (at your option) any later version.
9054 *
9055 * GnuPG is distributed in the hope that it will be useful,
9056 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9057 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9058 * GNU General Public License for more details.
9059 *
9060 * You should have received a copy of the GNU General Public License
9061 * along with this program; if not, see <http://www.gnu.org/licenses/>.
9062 */
9063
9064 #include <config.h>
9065 #include <stdio.h>
9066 #include <stdlib.h>
9067
9068 /* put the inline functions as real functions into the lib */
9069 #define G10_MPI_INLINE_DECL
9070
9071 #include "mpi-internal.h"
9072
9073 /* always include the header becuase it is only
9074 * included by mpi-internal if __GCC__ is defined but we
9075 * need it here in all cases and the above definition of
9076 * of the macro allows us to do so
9077 */
9078 #include "mpi-inline.h"
9079