*** empty log message ***

This commit is contained in:
2006-07-31 04:25:17 +00:00
parent 913b7dd072
commit abccc489ba
4 changed files with 207 additions and 38 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: awk.c,v 1.56 2006-07-28 10:38:16 bacon Exp $
* $Id: awk.c,v 1.57 2006-07-31 04:25:17 bacon Exp $
*/
#include <xp/awk/awk.h>
@ -303,7 +303,7 @@ static int next_extio_console (xp_awk_extio_t* epa);
static const xp_char_t* infiles[] =
{
XP_T(""),
//XP_T(""),
XP_T("awk.in"),
XP_NULL
};

4
ase/test/awk/t19.awk Normal file
View File

@ -0,0 +1,4 @@
//BEGIN { nlines="0.345"; }
{ nlines++; }
END { print nlines; }