*** empty log message ***

This commit is contained in:
hyung-hwan 2006-04-30 18:09:47 +00:00
parent 8065824722
commit 1028b7d912
2 changed files with 2 additions and 3 deletions

View File

@ -1,5 +1,5 @@
/* /*
* $Id: awk.c,v 1.27 2006-04-30 18:05:07 bacon Exp $ * $Id: awk.c,v 1.28 2006-04-30 18:09:47 bacon Exp $
*/ */
#include <xp/awk/awk.h> #include <xp/awk/awk.h>
@ -128,7 +128,6 @@ int xp_main (int argc, xp_char_t* argv[])
#ifdef __linux #ifdef __linux
mtrace (); mtrace ();
#endif #endif
if ((awk = xp_awk_open()) == XP_NULL) if ((awk = xp_awk_open()) == XP_NULL)
{ {
xp_printf (XP_TEXT("Error: cannot open awk\n")); xp_printf (XP_TEXT("Error: cannot open awk\n"));

View File

@ -6,7 +6,7 @@ LIBS = xpawk.lib
all: awk all: awk
awk: awk.obj awk: awk.obj
tcc $(LDFLAGS) -eawk.exe awk.obj $(LIBS) tcc $(LDFLAGS) -mh -eawk.exe awk.obj $(LIBS)
clean: clean:
del $(OBJS) *.obj $(OUT) del $(OBJS) *.obj $(OUT)