aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJim Meyering1993-07-13 16:37:01 +0000
committerJim Meyering1993-07-13 16:37:01 +0000
commite1efaae9a234c1888c0844df0de7cb4a10cfa7a6 (patch)
tree7282dd88a04f5f740760b3fef30fe73c22d21a5d /src
parent048ab7d386ee81982e94c90236d4655a77da94dd (diff)
downloademacs-e1efaae9a234c1888c0844df0de7cb4a10cfa7a6.tar.gz
emacs-e1efaae9a234c1888c0844df0de7cb4a10cfa7a6.zip
*** empty log message ***
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>