]> git.eshelyaron.com Git - emacs.git/commitdiff
*** empty log message ***
authorJim Meyering <jim@meyering.net>
Tue, 13 Jul 1993 16:37:01 +0000 (16:37 +0000)
committerJim Meyering <jim@meyering.net>
Tue, 13 Jul 1993 16:37:01 +0000 (16:37 +0000)
src/alloca.c

index c04c0efebdb512213e3095bb636bbf9d8f30b5aa..9c472ead6dfc9a618badcd08af73b94c3f3fe2d3 100644 (file)
@@ -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>