summaryrefslogtreecommitdiff
path: root/src/alloca.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1993-07-13 16:37:01 +0000
committerJim Meyering <jim@meyering.net>1993-07-13 16:37:01 +0000
commitf70dd6044fc9dd527af2c19ecd6ba1d18a613a58 (patch)
tree34915cdbb6377a6e3d922b5659c75f083c16c82b /src/alloca.c
parent14b2d9c106b7f74117f4c2b89cf331b6c7d76a45 (diff)
downloademacs-f70dd6044fc9dd527af2c19ecd6ba1d18a613a58.tar.gz
*** empty log message ***
Diffstat (limited to 'src/alloca.c')
-rw-r--r--src/alloca.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/alloca.c b/src/alloca.c
index c04c0efebdb..9c472ead6df 100644
--- a/src/alloca.c
+++ b/src/alloca.c
@@ -45,7 +45,7 @@ lose
/* If your stack is a linked list of frames, you have to
provide an "address metric" ADDRESS_FUNCTION macro. */
-#ifdef CRAY
+#if defined (CRAY) && defined (CRAY_STACKSEG_END)
long i00afunc ();
#define ADDRESS_FUNCTION(arg) (char *) i00afunc (&(arg))
#else
@@ -204,7 +204,7 @@ alloca (size)
}
}
-#ifdef CRAY
+#if defined (CRAY) && defined (CRAY_STACKSEG_END)
#ifdef DEBUG_I00AFUNC
#include <stdio.h>