affdba
/*
affdba
 * Copyright (C) 2013 Red Hat, Inc.  All rights reserved.
affdba
 *
affdba
 * This program is free software; you can redistribute it and/or
affdba
 * modify it under the terms of the GNU General Public License as
affdba
 * published by the Free Software Foundation; either version 2 of
affdba
 * the License, or (at your option) any later version.
affdba
 *
affdba
 * This program is distributed in the hope that it will be useful,
affdba
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
affdba
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
affdba
 * GNU General Public License for more details.
affdba
 *
affdba
 * You should have received a copy of the GNU General Public License
affdba
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
affdba
 *
affdba
 * Authors: Peter Hatina <phatina@redhat.com>
affdba
 */
affdba
affdba
#ifndef __CONFIG_H__
affdba
#define __CONFIG_H__
affdba
affdba
#  include <bits/wordsize.h>
affdba
affdba
#  if defined(__i386__) || defined(__i486__) || defined(__i586__) || defined(__i686__)
affdba
#    include "config-x86.h"
affdba
#  elif __WORDSIZE == 32
affdba
#    include "config-32.h"
affdba
#  elif __WORDSIZE == 64
affdba
#    include "config-64.h"
affdba
#  else
affdba
#    error "Not supported architecture"
affdba
#  endif
affdba
affdba
#endif // __CONFIG_H__