*** empty log message ***

This commit is contained in:
2007-04-26 15:50:17 +00:00
parent 515ef36507
commit 6acf470ccc
3 changed files with 8 additions and 4 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: Awk.cpp,v 1.36 2007-04-22 06:37:09 bacon Exp $
* $Id: Awk.cpp,v 1.37 2007-04-26 15:50:17 bacon Exp $
*
* {License}
*/
@ -19,6 +19,10 @@
#include <ase/utl/stdio.h>
#include <ase/utl/ctype.h>
#ifdef _MSC_VER
#pragma warning (disable: 4996)
#endif
#define DBGOUT(x) do { if (debug) OutputDebugString (x); } while(0)
#define DBGOUT2(awk,x) do { if (awk->debug) OutputDebugString (x); } while(0)