Blame SOURCES/gmp.h

be6a0d
/* Definitions for GNU multiple precision functions.   -*- mode: c -*-
be6a0d
be6a0d
Copyright 1991, 1993, 1994, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003,
be6a0d
2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
be6a0d
be6a0d
This file is part of the GNU MP Library.
be6a0d
be6a0d
The GNU MP Library is free software; you can redistribute it and/or modify
be6a0d
it under the terms of the GNU Lesser General Public License as published by
be6a0d
the Free Software Foundation; either version 3 of the License, or (at your
be6a0d
option) any later version.
be6a0d
be6a0d
The GNU MP Library is distributed in the hope that it will be useful, but
be6a0d
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
be6a0d
or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
be6a0d
License for more details.
be6a0d
be6a0d
You should have received a copy of the GNU Lesser General Public License
be6a0d
along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
be6a0d
be6a0d
/*
be6a0d
 * This gmp.h is a wrapper include file for the original gmp.h, which has been
be6a0d
 * renamed to gmp-<arch>.h. There are conflicts for the original gmp.h on
be6a0d
 * multilib systems, which result from arch-specific configuration options.
be6a0d
 * Please do not use the arch-specific file directly.
be6a0d
 *
be6a0d
 * Copyright (C) 2006 Red Hat, Inc.
be6a0d
 * Thomas Woerner <twoerner@redhat.com>
be6a0d
 */
be6a0d
be6a0d
#ifdef gmp_wrapper_h
be6a0d
#error "gmp_wrapper_h should not be defined!"
be6a0d
#endif
be6a0d
#define gmp_wrapper_h
be6a0d
be6a0d
#if defined(__arm__)
be6a0d
#include "gmp-arm.h"
be6a0d
#elif defined(__i386__)
be6a0d
#include "gmp-i386.h"
be6a0d
#elif defined(__ia64__)
be6a0d
#include "gmp-ia64.h"
be6a0d
#elif defined(__powerpc64__)
be6a0d
#include "gmp-ppc64.h"
be6a0d
#elif defined(__powerpc__)
be6a0d
#include "gmp-ppc.h"
be6a0d
#elif defined(__s390x__)
be6a0d
#include "gmp-s390x.h"
be6a0d
#elif defined(__s390__)
be6a0d
#include "gmp-s390.h"
be6a0d
#elif defined(__x86_64__)
be6a0d
#include "gmp-x86_64.h"
be6a0d
#elif defined(__alpha__)
be6a0d
#include "gmp-alpha.h"
be6a0d
#elif defined(__sh__)
be6a0d
#include "gmp-sh.h"
be6a0d
#elif defined(__sparc__) && defined (__arch64__)
be6a0d
#include "gmp-sparc64.h"
be6a0d
#elif defined(__sparc__)
be6a0d
#include "gmp-sparc.h"
be6a0d
#elif defined(__aarch64__)
be6a0d
#include "gmp-aarch64.h"
be6a0d
#else
be6a0d
#error "The gmp-devel package is not usable with the architecture."
be6a0d
#endif
be6a0d
be6a0d
#undef gmp_wrapper_h