Blame bashtypes.h

Packit b5e560
/* bashtypes.h -- Bash system types. */
Packit b5e560
Packit b5e560
/* Copyright (C) 1993-2009 Free Software Foundation, Inc.
Packit b5e560
Packit b5e560
   This file is part of GNU Bash, the Bourne Again SHell.
Packit b5e560
Packit b5e560
   Bash is free software: you can redistribute it and/or modify
Packit b5e560
   it under the terms of the GNU General Public License as published by
Packit b5e560
   the Free Software Foundation, either version 3 of the License, or
Packit b5e560
   (at your option) any later version.
Packit b5e560
Packit b5e560
   Bash is distributed in the hope that it will be useful,
Packit b5e560
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit b5e560
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit b5e560
   GNU General Public License for more details.
Packit b5e560
Packit b5e560
   You should have received a copy of the GNU General Public License
Packit b5e560
   along with Bash.  If not, see <http://www.gnu.org/licenses/>.
Packit b5e560
*/
Packit b5e560
Packit b5e560
#if !defined (_BASHTYPES_H_)
Packit b5e560
#  define _BASHTYPES_H_
Packit b5e560
Packit b5e560
#if defined (CRAY)
Packit b5e560
#  define word __word
Packit b5e560
#endif
Packit b5e560
Packit b5e560
#include <sys/types.h>
Packit b5e560
Packit b5e560
#if defined (CRAY)
Packit b5e560
#  undef word
Packit b5e560
#endif
Packit b5e560
Packit b5e560
#if defined (HAVE_INTTYPES_H)
Packit b5e560
#  include <inttypes.h>
Packit b5e560
#endif
Packit b5e560
Packit b5e560
#if HAVE_STDINT_H
Packit b5e560
#  include <stdint.h>
Packit b5e560
#endif
Packit b5e560
Packit b5e560
#endif /* _BASHTYPES_H_ */