Changeset af191b9 in git


Ignore:
Timestamp:
Apr 8, 1998, 3:47:03 PM (25 years ago)
Author:
Wilfred Pohl <pohl@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '00e2e9c41af3fde1273eb3633f4c0c7c3db2579d')
Children:
2753974d7f92c0c2a946d0bfae76c8bdf508b628
Parents:
41bcd79e2675c701bdaeb8b5d9e33602f5841f39
Message:
alloca for Metrowerks


git-svn-id: file:///usr/local/Singular/svn/trunk@1363 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/grammar.y

    r41bcd7 raf191b9  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: grammar.y,v 1.25 1998-03-31 09:00:46 Singular Exp $ */
     4/* $Id: grammar.y,v 1.26 1998-04-08 13:47:03 pohl Exp $ */
    55/*
    66* ABSTRACT: SINGULAR shell grammatik
     
    1414#include <string.h>
    1515#include <limits.h>
    16 #ifdef macintosh
    17 #ifdef __POWERPC__
    18 #include <alloca.h>
    19 #else
    20 #define alloca malloc /* this is not corect! */
    21 #endif
     16#ifdef __MWERKS__
     17  #ifdef __POWERPC__
     18    #include <alloca.h>
     19  #else
     20    #ifdef macintosh
     21      #define alloca malloc /* this is not corect! */
     22    #else
     23      #include <malloc.h>
     24    #endif
     25  #endif
    2226#endif
    2327
Note: See TracChangeset for help on using the changeset viewer.