summaryrefslogtreecommitdiff
path: root/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
commit2ef2fbe7a4a8f8d5253149c8ca3204b82da28a01 (patch)
tree3863746e9f8020aabe9c6510a18d4f5e9cb0e13e /alloca.c
parentc3b30f576d6ab8feadc2ad53580f7404e8bfdf9e (diff)
downloadgunmake-2ef2fbe7a4a8f8d5253149c8ca3204b82da28a01.tar.gz
*** empty log message ***
Diffstat (limited to 'alloca.c')
-rw-r--r--alloca.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/alloca.c b/alloca.c
index c04c0ef..9c472ea 100644
--- a/alloca.c
+++ b/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>