-
+ F9C2A485A76A2A0C12704D4683A4DC6A891B82217EB70B6FEE22D4CDE87FE7453C99463136A677C4520F9ACE2B110EBD856214AFDEC5104EB2CB0774573F09CA
smg_comms/mpi/mpi-inline.c
(0 . 0)(1 . 39)
4410 /* mpi-inline.c
4411 * Modified by No Such Labs. (C) 2015. See README.
4412 *
4413 * This file was originally part of Gnu Privacy Guard (GPG), ver. 1.4.10,
4414 * SHA256(gnupg-1.4.10.tar.gz):
4415 * 0bfd74660a2f6cedcf7d8256db4a63c996ffebbcdc2cf54397bfb72878c5a85a
4416 * (C) 1994-2005 Free Software Foundation, Inc.
4417 *
4418 * This program is free software: you can redistribute it and/or modify
4419 * it under the terms of the GNU General Public License as published by
4420 * the Free Software Foundation, either version 3 of the License, or
4421 * (at your option) any later version.
4422 *
4423 * This program is distributed in the hope that it will be useful,
4424 * but WITHOUT ANY WARRANTY; without even the implied warranty of
4425 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
4426 * GNU General Public License for more details.
4427 *
4428 * You should have received a copy of the GNU General Public License
4429 * along with this program. If not, see <http://www.gnu.org/licenses/>.
4430 */
4431
4432 #include <stdio.h>
4433 #include <stdlib.h>
4434
4435 #include "knobs.h"
4436
4437 /* put the inline functions as real functions into the lib */
4438 #define G10_MPI_INLINE_DECL
4439
4440 #include "mpi-internal.h"
4441
4442 /* always include the header becuase it is only
4443 * included by mpi-internal if __GCC__ is defined but we
4444 * need it here in all cases and the above definition of
4445 * of the macro allows us to do so
4446 */
4447 #include "mpi-inline.h"
4448