*** empty log message ***

This commit is contained in:
hyung-hwan 2006-08-23 15:43:45 +00:00
parent ff3868da3f
commit f72fecbf57
6 changed files with 9 additions and 5 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: extio.c,v 1.29 2006-08-23 15:41:46 bacon Exp $
* $Id: extio.c,v 1.30 2006-08-23 15:43:45 bacon Exp $
*/
#include <xp/awk/awk_i.h>

View File

@ -1,5 +1,5 @@
/*
* $Id: func.c,v 1.27 2006-08-23 15:41:46 bacon Exp $
* $Id: func.c,v 1.28 2006-08-23 15:43:45 bacon Exp $
*/
#include <xp/awk/awk_i.h>

View File

@ -1,5 +1,5 @@
/*
* $Id: parse.c,v 1.166 2006-08-23 15:41:46 bacon Exp $
* $Id: parse.c,v 1.167 2006-08-23 15:43:45 bacon Exp $
*/
#include <xp/awk/awk_i.h>

View File

@ -1,5 +1,5 @@
/*
* $Id: run.c,v 1.175 2006-08-23 15:41:46 bacon Exp $
* $Id: run.c,v 1.176 2006-08-23 15:43:45 bacon Exp $
*/
#include <xp/awk/awk_i.h>

View File

@ -30,7 +30,8 @@ BEGIN {
}
print x > "def";
print "fflush() = ", fflush ("def");
//print "fflush(def) = ", fflush ("def");
print "fflush() = ", fflush ("");
// print (1 (2 getline j) j);
// print "abc" 1 + 2 3 + 49 2 / 3;

3
ase/test/awk/t30.awk Normal file
View File

@ -0,0 +1,3 @@
//{ "dir/w/p" | getline; print $0; print "flush(dir/w/p)=", fflush("dir/w/p"); }
//{ print | "grep Asia"; fflush("grep Asia"); }
{ print | "grep Asia"; print "flush(grep Asia)=", fflush("grep Asia"); }