From f6a75fddf4e71545c63dfcad99cc2df9bac38093 Mon Sep 17 00:00:00 2001 From: John David Anglin Date: Fri, 19 Jul 2024 10:10:17 -0400 Subject: Fix usage of _STACK_GROWS_DOWN and _STACK_GROWS_UP defines [BZ 31989] MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: John David Anglin Reviewed-By: Andreas K. Hüttel (cherry picked from commit 8cfa4ecff21adf226984f135aa576dd8063bbba3) --- sysdeps/unix/sysv/linux/____longjmp_chk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sysdeps') diff --git a/sysdeps/unix/sysv/linux/____longjmp_chk.c b/sysdeps/unix/sysv/linux/____longjmp_chk.c index 0896dc5..3c66a46 100644 --- a/sysdeps/unix/sysv/linux/____longjmp_chk.c +++ b/sysdeps/unix/sysv/linux/____longjmp_chk.c @@ -23,7 +23,7 @@ #include #include -#ifdef _STACK_GROWS_DOWN +#if _STACK_GROWS_DOWN #define called_from(this, saved) ((this) < (saved)) #else #define called_from(this, saved) ((this) > (saved)) -- cgit v1.1