*** empty log message ***

This commit is contained in:
2007-02-23 15:22:36 +00:00
parent 1804fd92b0
commit c5a6d2e388
11 changed files with 56 additions and 775 deletions

File diff suppressed because one or more lines are too long

View File

@ -1,4 +1,4 @@
# Microsoft Developer Studio Project File - Name="awk" - Package Owner=<4>
# Microsoft Developer Studio Project File - Name="awk.lib" - Package Owner=<4>
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
@ -135,10 +135,6 @@ SOURCE=.\run.c
# End Source File
# Begin Source File
SOURCE=.\str.c
# End Source File
# Begin Source File
SOURCE=.\tab.c
# End Source File
# Begin Source File
@ -187,10 +183,6 @@ SOURCE=.\run.h
# End Source File
# Begin Source File
SOURCE=.\str.h
# End Source File
# Begin Source File
SOURCE=.\tab.h
# End Source File
# Begin Source File

View File

@ -1,5 +1,5 @@
/*
* $Id: awk_i.h,v 1.102 2007-02-23 08:17:49 bacon Exp $
* $Id: awk_i.h,v 1.103 2007-02-23 15:18:36 bacon Exp $
*
* {License}
*/
@ -40,9 +40,18 @@ typedef struct ase_awk_tree_t ase_awk_tree_t;
#define ASE_AWK_MAX_LOCALS 9999
#define ASE_AWK_MAX_PARAMS 9999
#define ASE_AWK_MALLOC(awk,size) ASE_MALLOC(&(awk)->prmfns.mmgr,size)
#define ASE_AWK_REALLOC(awk,ptr,size) ASE_REALLOC(&(awk)->prmfns.mmgr,ptr,size)
#define ASE_AWK_FREE(awk,ptr) ASE_FREE(&(awk)->prmfns.mmgr,ptr)
#if defined(_WIN32) && defined(_MSC_VER) && defined(_DEBUG)
#define _CRTDBG_MAP_ALLOC
#include <crtdbg.h>
#define ASE_AWK_MALLOC(awk,size) malloc (size)
#define ASE_AWK_REALLOC(awk,ptr,size) realloc (ptr, size)
#define ASE_AWK_FREE(awk,ptr) free (ptr)
#else
#define ASE_AWK_MALLOC(awk,size) ASE_MALLOC(&(awk)->prmfns.mmgr,size)
#define ASE_AWK_REALLOC(awk,ptr,size) ASE_REALLOC(&(awk)->prmfns.mmgr,ptr,size)
#define ASE_AWK_FREE(awk,ptr) ASE_FREE(&(awk)->prmfns.mmgr,ptr)
#endif
#define ASE_AWK_ISUPPER(awk,c) ASE_ISUPPER(&(awk)->prmfns.ccls,c)
#define ASE_AWK_ISLOWER(awk,c) ASE_ISLOWER(&(awk)->prmfns.ccls,c)