From 70d800cd805d68f57036207241b9bffc12141e34 Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Fri, 25 Aug 2006 23:50:15 +0000 Subject: [PATCH] *** empty log message *** --- ase/awk/extio.c | 4 +++- ase/awk/makefile.bcc | 5 +++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/ase/awk/extio.c b/ase/awk/extio.c index ec1569ca..0e7ee066 100644 --- a/ase/awk/extio.c +++ b/ase/awk/extio.c @@ -1,5 +1,5 @@ /* - * $Id: extio.c,v 1.34 2006-08-25 15:52:47 bacon Exp $ + * $Id: extio.c,v 1.35 2006-08-25 23:50:15 bacon Exp $ */ #include @@ -278,6 +278,7 @@ int xp_awk_readextio ( } else { +#if 0 xp_char_t* match_ptr; xp_size_t match_len; /* TODO: */ @@ -298,6 +299,7 @@ int xp_awk_readextio ( /* matched... */ /* DO SOMTHING */ } +#endif } if (xp_str_ccat (buf, c) == (xp_size_t)-1) diff --git a/ase/awk/makefile.bcc b/ase/awk/makefile.bcc index 5db1a11d..5c4b9204 100644 --- a/ase/awk/makefile.bcc +++ b/ase/awk/makefile.bcc @@ -1,9 +1,10 @@ -SRCS = awk.c err.c tree.c tab.c map.c parse.c run.c sa.c val.c func.c misc.c extio.c +SRCS = awk.c err.c tree.c tab.c map.c parse.c \ + run.c sa.c val.c func.c misc.c extio.c rex.c OBJS = $(SRCS:.c=.obj) OUT = xpawk.lib CC = bcc32 -CFLAGS = -O2 -WM -w -w-inl -w-sig -w-spa -w-hid -RT- -I../.. -DXP_AWK_STAND_ALONE +CFLAGS = -O2 -WM -w -w-inl -w-sig -w-spa -w-hid -RT- -I../.. -DXP_AWK_STAND_ALONE -DXP_CHAR_IS_WCHAR all: $(OBJS) tlib $(OUT) @&&!