- D355F8BB711647E95451CF2D53F8C496013D9C797ACC81560FAE155C5850823C880D647347426A4562DA568A6CDE708FDCCBD1E881568816156C0801C7E47FD7
+ 7080AB52C460BB847F724212473D3F0B93AA44175577E977E937BC2246E11BE0B0BA2439B9E1053A1C898B606617717260D61937D7BA70B034B77CED2149EA83
mpi/include/types.h
(1 . 20)(1 . 23)
946 /* types.h - some common typedefs
947 * Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
948 * Modified by No Such Labs. (C) 2015. See README.
949 *
950 * This file is part of GNUPG.
951 * This file was originally part of Gnu Privacy Guard (GPG), ver. 1.4.10,
952 * SHA256(gnupg-1.4.10.tar.gz):
953 * 0bfd74660a2f6cedcf7d8256db4a63c996ffebbcdc2cf54397bfb72878c5a85a
954 * (C) 1994-2005 Free Software Foundation, Inc.
955 *
956 * GNUPG is free software; you can redistribute it and/or modify
957 * This program is free software: you can redistribute it and/or modify
958 * it under the terms of the GNU General Public License as published by
959 * the Free Software Foundation; either version 3 of the License, or
960 * the Free Software Foundation, either version 3 of the License, or
961 * (at your option) any later version.
962 *
963 * GNUPG is distributed in the hope that it will be useful,
964 * This program is distributed in the hope that it will be useful,
965 * but WITHOUT ANY WARRANTY; without even the implied warranty of
966 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
967 * GNU General Public License for more details.
968 *
969 * You should have received a copy of the GNU General Public License
970 * along with this program; if not, see <http://www.gnu.org/licenses/>.
971 * along with this program. If not, see <http://www.gnu.org/licenses/>.
972 */
973
974 #ifndef G10_TYPES_H
(46 . 14)(49 . 7)
976
977 #ifndef HAVE_BYTE_TYPEDEF
978 #undef byte /* maybe there is a macro with this name */
979 #ifndef __riscos__
980 typedef unsigned char byte;
981 #else
982 /* Norcroft treats char = unsigned char as legal assignment
983 but char* = unsigned char* as illegal assignment
984 and the same applies to the signed variants as well */
985 typedef char byte;
986 #endif
987 #define HAVE_BYTE_TYPEDEF
988 #endif
989