aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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
45/* If your stack is a linked list of frames, you have to 45/* If your stack is a linked list of frames, you have to
46 provide an "address metric" ADDRESS_FUNCTION macro. */ 46 provide an "address metric" ADDRESS_FUNCTION macro. */
47 47
48#ifdef CRAY 48#if defined (CRAY) && defined (CRAY_STACKSEG_END)
49long i00afunc (); 49long i00afunc ();
50#define ADDRESS_FUNCTION(arg) (char *) i00afunc (&(arg)) 50#define ADDRESS_FUNCTION(arg) (char *) i00afunc (&(arg))
51#else 51#else
@@ -204,7 +204,7 @@ alloca (size)
204 } 204 }
205} 205}
206 206
207#ifdef CRAY 207#if defined (CRAY) && defined (CRAY_STACKSEG_END)
208 208
209#ifdef DEBUG_I00AFUNC 209#ifdef DEBUG_I00AFUNC
210#include <stdio.h> 210#include <stdio.h>