*** empty log message ***
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* $Id: awk.c,v 1.51 2006-07-02 12:16:24 bacon Exp $
|
||||
* $Id: awk.c,v 1.52 2006-07-06 13:57:31 bacon Exp $
|
||||
*/
|
||||
|
||||
#include <xp/awk/awk.h>
|
||||
@ -392,7 +392,7 @@ xp_printf (XP_TEXT("closing [%s] of type %d (console)\n"), epa->name, epa->type
|
||||
/* TODO: how to return error or 0 */
|
||||
fputs_t (data, /*size,*/ (FILE*)epa->handle);
|
||||
/*fputs_t (data, stdout);*/
|
||||
MessageBox (NULL, data, data, MB_OK);
|
||||
/*MessageBox (NULL, data, data, MB_OK);*/
|
||||
return size;
|
||||
}
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
CC = bcc32
|
||||
CFLAGS = -I..\..\.. -D__STAND_ALONE
|
||||
LDFLAGS = -L..\..\..\xp\bas -L..\..\..\xp\awk
|
||||
LIBS = import32.lib cw32mt.lib xpbas.lib xpawk.lib
|
||||
LIBS = import32.lib cw32mt.lib xpawk.lib
|
||||
STARTUP = c0x32w.obj
|
||||
|
||||
all: awk
|
||||
|
@ -18,6 +18,16 @@ END
|
||||
}
|
||||
*/
|
||||
{
|
||||
$3 = "10";
|
||||
print $0, $2, $5;
|
||||
//$3 = "10";
|
||||
//print $0, $2, $5;
|
||||
$0 = "wow this is just a test";
|
||||
print "step 1--------------------";
|
||||
//print $0;
|
||||
a = $6;
|
||||
print "step 2--------------------";
|
||||
print a;
|
||||
/*
|
||||
print $6;
|
||||
*/
|
||||
print "step 3--------------------";
|
||||
}
|
||||
|
Reference in New Issue
Block a user