*** empty log message ***

This commit is contained in:
hyung-hwan 2006-06-30 06:16:57 +00:00
parent 6aef20775a
commit f5d34f66bb
2 changed files with 6 additions and 2 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: awk.c,v 1.49 2006-06-30 06:09:38 bacon Exp $
* $Id: awk.c,v 1.50 2006-06-30 06:16:57 bacon Exp $
*/
#include <xp/awk/awk.h>
@ -113,7 +113,6 @@ static FILE* popen_t (const xp_char_t* cmd, const xp_char_t* mode)
}
#ifdef WIN32
{
#define fgets_t _fgetts
#define fputs_t _fputts
#else

View File

@ -1,6 +1,11 @@
BEGIN
{
/*
print 1
|
"test";
*/
print 1
|
1;
}