[BACK]Return to parse.y CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / parse

Diff for /OpenXM_contrib2/asir2000/parse/parse.y between version 1.4 and 1.5

version 1.4, 2000/09/21 09:19:27 version 1.5, 2000/12/05 01:24:57
Line 45 
Line 45 
  * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,   * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,
  * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.   * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.
  *   *
  * $OpenXM: OpenXM_contrib2/asir2000/parse/parse.y,v 1.3 2000/08/22 05:04:27 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/parse/parse.y,v 1.4 2000/09/21 09:19:27 noro Exp $
 */  */
 %{  %{
 #define malloc(x) GC_malloc(x)  #define malloc(x) GC_malloc(x)
 #define realloc(x,y) GC_realloc(x,y)  #define realloc(x,y) GC_realloc(x,y)
 #define free(x) GC_free(x)  #define free(x) GC_free(x)
   
 #if defined(THINK_C)  
 #define alloca(x) GC_malloc(x)  
 #endif  
 #if defined(TOWNS)  #if defined(TOWNS)
 #include <alloca.h>  #include <alloca.h>
 #endif  #endif
 #include <ctype.h>  #include <ctype.h>
 #include "ca.h"  #include "ca.h"
 #if !defined(THINK_C)  
 #include <sys/types.h>  #include <sys/types.h>
 #include <sys/stat.h>  #include <sys/stat.h>
 #endif  
 #include "parse.h"  #include "parse.h"
   
 #define NOPR (prresult=0)  #define NOPR (prresult=0)

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>