From: Peep P. <so...@us...> - 2004-06-08 20:22:02
|
Update of /cvsroot/agd/server/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11022/src Modified Files: Makefile.in dfparse.h lang.h Log Message: Regenerated. Index: lang.h =================================================================== RCS file: /cvsroot/agd/server/src/lang.h,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- lang.h 7 Jun 2004 15:51:29 -0000 1.9 +++ lang.h 8 Jun 2004 20:20:48 -0000 1.10 @@ -113,15 +113,16 @@ char *str; int i; char c; /* used by lex.l */ - struct arr_t { - int length; + struct arr { + int len; int *data; } arr; expr_t expr; def_id_t *id; + void *ptr; /* for() uses this. */ } YYSTYPE; /* Line 1240 of yacc.c. */ -#line 125 "lang.h" +#line 126 "lang.h" # define yystype YYSTYPE /* obsolescent; will be withdrawn */ # define YYSTYPE_IS_DECLARED 1 # define YYSTYPE_IS_TRIVIAL 1 Index: Makefile.in =================================================================== RCS file: /cvsroot/agd/server/src/Makefile.in,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- Makefile.in 7 Jun 2004 15:51:29 -0000 1.12 +++ Makefile.in 8 Jun 2004 20:20:48 -0000 1.13 @@ -120,14 +120,14 @@ noinst_PROGRAMS = dfparse dfparse_SOURCES = dfparse.y dflex.l -dfparse_LDADD = sys.o array.o log.o @LEXLIB@ +dfparse_LDADD = sys.o @LEXLIB@ BUILT_SOURCES = dfdecl.h bin_PROGRAMS = agd agd_SOURCES = arch.h array.c array.h compile.c compile.h compile_options.h \ debug.c debug.h dfdecl.h dfuns.c dfuns.h interpret.c interpret.h lex.l lex.h \ -list.c list.h log.c lpc.h lpc_incl.h lang.y main.c net.c net.h std.h \ +list.c list.h log.c lpc.h lpc_incl.h lang.y main.c net.c net.h std.h \ sys.c sys.h vars.c vars.h dfdecl.in dfdecl.h object.c object.h agd_LDADD = @LEXLIB@ @@ -149,7 +149,7 @@ agd_LDFLAGS = am_dfparse_OBJECTS = dfparse.$(OBJEXT) dflex.$(OBJEXT) dfparse_OBJECTS = $(am_dfparse_OBJECTS) -dfparse_DEPENDENCIES = sys.o array.o log.o +dfparse_DEPENDENCIES = sys.o dfparse_LDFLAGS = DEFAULT_INCLUDES = -I. -I$(srcdir) -I. @@ -492,6 +492,7 @@ uninstall-am uninstall-binPROGRAMS uninstall-dist_pkgdataDATA \ uninstall-info-am +# array.o log.o dflex.c: dfparse.c Index: dfparse.h =================================================================== RCS file: /cvsroot/agd/server/src/dfparse.h,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- dfparse.h 7 Jun 2004 15:51:29 -0000 1.6 +++ dfparse.h 8 Jun 2004 20:20:48 -0000 1.7 @@ -40,13 +40,13 @@ #if ! defined (YYSTYPE) && ! defined (YYSTYPE_IS_DECLARED) -#line 53 "dfparse.y" +#line 66 "dfparse.y" typedef union YYSTYPE { char *s; int i; - struct arr_t { - int length; - long int *data; + struct arr { + int len; + int *data; } a; } YYSTYPE; /* Line 1240 of yacc.c. */ |