raw
mpi-genesis             1 /* mpi-inline.c
mpi-genesis 2 * Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
mpi-genesis 3 *
mpi-genesis 4 * This file is part of GnuPG.
mpi-genesis 5 *
mpi-genesis 6 * GnuPG is free software; you can redistribute it and/or modify
mpi-genesis 7 * it under the terms of the GNU General Public License as published by
mpi-genesis 8 * the Free Software Foundation; either version 3 of the License, or
mpi-genesis 9 * (at your option) any later version.
mpi-genesis 10 *
mpi-genesis 11 * GnuPG is distributed in the hope that it will be useful,
mpi-genesis 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
mpi-genesis 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
mpi-genesis 14 * GNU General Public License for more details.
mpi-genesis 15 *
mpi-genesis 16 * You should have received a copy of the GNU General Public License
mpi-genesis 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
mpi-genesis 18 */
mpi-genesis 19
mpi-genesis 20 #include <config.h>
mpi-genesis 21 #include <stdio.h>
mpi-genesis 22 #include <stdlib.h>
mpi-genesis 23
mpi-genesis 24 /* put the inline functions as real functions into the lib */
mpi-genesis 25 #define G10_MPI_INLINE_DECL
mpi-genesis 26
mpi-genesis 27 #include "mpi-internal.h"
mpi-genesis 28
mpi-genesis 29 /* always include the header becuase it is only
mpi-genesis 30 * included by mpi-internal if __GCC__ is defined but we
mpi-genesis 31 * need it here in all cases and the above definition of
mpi-genesis 32 * of the macro allows us to do so
mpi-genesis 33 */
mpi-genesis 34 #include "mpi-inline.h"
mpi-genesis 35