*** 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> #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 #ifdef WIN32
{
#define fgets_t _fgetts #define fgets_t _fgetts
#define fputs_t _fputts #define fputs_t _fputts
#else #else

View File

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