*** empty log message ***

This commit is contained in:
2006-01-30 17:50:38 +00:00
parent d1990ba8c7
commit af6626d66a
3 changed files with 13 additions and 30 deletions

View File

@ -1,4 +1,4 @@
SRCS = awk.c tree.c parse.c run.c sa.c
SRCS = awk.c tree.c tab.c hash.c parse.c run.c sa.c
OBJS = $(SRCS:.c=.o)
OUT = libxpawk.a

View File

@ -1,29 +0,0 @@
/*
* $Id: prog.h,v 1.1 2005-12-28 15:57:27 bacon Exp $
*/
#ifndef _XP_AWK_PROG_H_
#define _XP_AWK_PROG_H_
struct
{
/* line number */
xp_size_t linenum;
union
{
const xp_char_t* func_name;
} ptn;
union
{
struct
{
unsigned short nargs;
xp_awk_body_t body;
} func;
} act;
};
#endif