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