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