1*a3210bbcSAlex Smith /* Copyright (C) 2001 Free Software Foundation, Inc. 2*a3210bbcSAlex Smith This file is part of the GNU C Library. 3*a3210bbcSAlex Smith 4*a3210bbcSAlex Smith The GNU C Library is free software; you can redistribute it and/or 5*a3210bbcSAlex Smith modify it under the terms of the GNU Lesser General Public 6*a3210bbcSAlex Smith License as published by the Free Software Foundation; either 7*a3210bbcSAlex Smith version 2.1 of the License, or (at your option) any later version. 8*a3210bbcSAlex Smith 9*a3210bbcSAlex Smith The GNU C Library is distributed in the hope that it will be useful, 10*a3210bbcSAlex Smith but WITHOUT ANY WARRANTY; without even the implied warranty of 11*a3210bbcSAlex Smith MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12*a3210bbcSAlex Smith Lesser General Public License for more details. 13*a3210bbcSAlex Smith 14*a3210bbcSAlex Smith You should have received a copy of the GNU Lesser General Public 15*a3210bbcSAlex Smith License along with the GNU C Library; if not, write to the Free 16*a3210bbcSAlex Smith Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 17*a3210bbcSAlex Smith 02111-1307 USA. */ 18*a3210bbcSAlex Smith 19*a3210bbcSAlex Smith /* This file contains a bit of information about the stack allocation 20*a3210bbcSAlex Smith of the processor. */ 21*a3210bbcSAlex Smith 22*a3210bbcSAlex Smith #ifndef _STACKINFO_H 23*a3210bbcSAlex Smith #define _STACKINFO_H 1 24*a3210bbcSAlex Smith 25*a3210bbcSAlex Smith /* On x86_64 the stack grows down. */ 26*a3210bbcSAlex Smith #define _STACK_GROWS_DOWN 1 27*a3210bbcSAlex Smith 28*a3210bbcSAlex Smith #endif /* stackinfo.h */ 29