-
+ F9C2A485A76A2A0C12704D4683A4DC6A891B82217EB70B6FEE22D4CDE87FE7453C99463136A677C4520F9ACE2B110EBD856214AFDEC5104EB2CB0774573F09CA
eucrypt/mpi/mpi-inline.c
(0 . 0)(1 . 39)
3671 /* mpi-inline.c
3672 * Modified by No Such Labs. (C) 2015. See README.
3673 *
3674 * This file was originally part of Gnu Privacy Guard (GPG), ver. 1.4.10,
3675 * SHA256(gnupg-1.4.10.tar.gz):
3676 * 0bfd74660a2f6cedcf7d8256db4a63c996ffebbcdc2cf54397bfb72878c5a85a
3677 * (C) 1994-2005 Free Software Foundation, Inc.
3678 *
3679 * This program is free software: you can redistribute it and/or modify
3680 * it under the terms of the GNU General Public License as published by
3681 * the Free Software Foundation, either version 3 of the License, or
3682 * (at your option) any later version.
3683 *
3684 * This program is distributed in the hope that it will be useful,
3685 * but WITHOUT ANY WARRANTY; without even the implied warranty of
3686 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
3687 * GNU General Public License for more details.
3688 *
3689 * You should have received a copy of the GNU General Public License
3690 * along with this program. If not, see <http://www.gnu.org/licenses/>.
3691 */
3692
3693 #include <stdio.h>
3694 #include <stdlib.h>
3695
3696 #include "knobs.h"
3697
3698 /* put the inline functions as real functions into the lib */
3699 #define G10_MPI_INLINE_DECL
3700
3701 #include "mpi-internal.h"
3702
3703 /* always include the header becuase it is only
3704 * included by mpi-internal if __GCC__ is defined but we
3705 * need it here in all cases and the above definition of
3706 * of the macro allows us to do so
3707 */
3708 #include "mpi-inline.h"
3709