From: Richard M. Stallman Date: Wed, 18 Jun 1997 06:40:45 +0000 (+0000) Subject: new.h renamed to alloc.h. X-Git-Tag: GNU_ORIG~8 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/7612000cb004ae5b8516e3a34a79ab32050d688e new.h renamed to alloc.h. --- diff --git a/Makefile.in b/Makefile.in index f2d98f38..bce34aa7 100644 --- a/Makefile.in +++ b/Makefile.in @@ -68,7 +68,7 @@ DISTFILES = COPYING ChangeLog Makefile.in configure configure.in \ LR0.c allocate.c closure.c conflicts.c derives.c \ files.c getargs.c gram.c lalr.c lex.c main.c nullable.c \ output.c print.c reader.c reduce.c symtab.c version.c \ - warshall.c files.h gram.h lex.h machine.h new.h state.h \ + warshall.c files.h gram.h lex.h machine.h alloc.h state.h \ symtab.h system.h types.h bison.cld build.com vmsgetargs.c \ vmshlp.mar README INSTALL NEWS bison.texinfo bison.info* texinfo.tex \ getopt.c getopt.h getopt1.c alloca.c mkinstalldirs install-sh @@ -175,22 +175,22 @@ files.o: files.c $(CC) -c $(PFILES) $(DEFS) $(CPPFLAGS) $(CFLAGS) \ $(srcdir)/files.c $(OUTPUT_OPTION) -LR0.o: system.h machine.h new.h gram.h state.h +LR0.o: system.h machine.h alloc.h gram.h state.h allocate.o: system.h -closure.o: system.h machine.h new.h gram.h -conflicts.o: system.h machine.h new.h files.h gram.h state.h -derives.o: system.h new.h types.h gram.h -files.o: system.h files.h new.h gram.h +closure.o: system.h machine.h alloc.h gram.h +conflicts.o: system.h machine.h alloc.h files.h gram.h state.h +derives.o: system.h alloc.h types.h gram.h +files.o: system.h files.h alloc.h gram.h getargs.o: system.h files.h -lalr.o: system.h machine.h types.h state.h new.h gram.h +lalr.o: system.h machine.h types.h state.h alloc.h gram.h lex.o: system.h files.h symtab.h lex.h main.o: system.h machine.h -nullable.o: system.h types.h gram.h new.h -output.o: system.h machine.h new.h files.h gram.h state.h -print.o: system.h machine.h new.h files.h gram.h state.h -reader.o: system.h files.h new.h symtab.h lex.h gram.h -reduce.o: system.h machine.h files.h new.h gram.h -symtab.o: system.h new.h symtab.h gram.h +nullable.o: system.h types.h gram.h alloc.h +output.o: system.h machine.h alloc.h files.h gram.h state.h +print.o: system.h machine.h alloc.h files.h gram.h state.h +reader.o: system.h files.h alloc.h symtab.h lex.h gram.h +reduce.o: system.h machine.h files.h alloc.h gram.h +symtab.o: system.h alloc.h symtab.h gram.h warshall.o: system.h machine.h # Prevent GNU make v3 from overflowing arg limit on SysV. diff --git a/src/LR0.c b/src/LR0.c index 77cc0251..34022195 100644 --- a/src/LR0.c +++ b/src/LR0.c @@ -24,7 +24,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include #include "system.h" #include "machine.h" -#include "new.h" +#include "alloc.h" #include "gram.h" #include "state.h" diff --git a/src/closure.c b/src/closure.c index d24fee37..6255538f 100644 --- a/src/closure.c +++ b/src/closure.c @@ -51,7 +51,7 @@ Frees itemset, ruleset and internal data. #include #include "system.h" #include "machine.h" -#include "new.h" +#include "alloc.h" #include "gram.h" diff --git a/src/conflicts.c b/src/conflicts.c index 5d17a980..c2521909 100644 --- a/src/conflicts.c +++ b/src/conflicts.c @@ -20,7 +20,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include #include "system.h" #include "machine.h" -#include "new.h" +#include "alloc.h" #include "files.h" #include "gram.h" #include "state.h" diff --git a/src/derives.c b/src/derives.c index 33a8a035..7a95050c 100644 --- a/src/derives.c +++ b/src/derives.c @@ -25,7 +25,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include #include "system.h" -#include "new.h" +#include "alloc.h" #include "types.h" #include "gram.h" diff --git a/src/files.c b/src/files.c index b69e2aa6..1df92ec3 100644 --- a/src/files.c +++ b/src/files.c @@ -41,7 +41,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include #include "system.h" #include "files.h" -#include "new.h" +#include "alloc.h" #include "gram.h" FILE *finput = NULL; diff --git a/src/lalr.c b/src/lalr.c index f7d92ec7..31ca44da 100644 --- a/src/lalr.c +++ b/src/lalr.c @@ -52,7 +52,7 @@ If LA[l, i] and LA[l, j] are both 1 for i != j, it is a conflict. #include "machine.h" #include "types.h" #include "state.h" -#include "new.h" +#include "alloc.h" #include "gram.h" diff --git a/src/lex.c b/src/lex.c index ad06ea6a..96c7ccee 100644 --- a/src/lex.c +++ b/src/lex.c @@ -32,7 +32,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "getopt.h" /* for optarg */ #include "symtab.h" #include "lex.h" -#include "new.h" +#include "alloc.h" /* flags set by % directives */ extern int definesflag; /* for -d */ diff --git a/src/nullable.c b/src/nullable.c index 919efbd5..c3c96d7d 100644 --- a/src/nullable.c +++ b/src/nullable.c @@ -25,7 +25,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "system.h" #include "types.h" #include "gram.h" -#include "new.h" +#include "alloc.h" char *nullable; diff --git a/src/output.c b/src/output.c index 727ac8ad..6d96d50f 100644 --- a/src/output.c +++ b/src/output.c @@ -105,7 +105,7 @@ YYNTBASE = ntokens. #include #include "system.h" #include "machine.h" -#include "new.h" +#include "alloc.h" #include "files.h" #include "gram.h" #include "state.h" diff --git a/src/print.c b/src/print.c index 489379d1..f6817223 100644 --- a/src/print.c +++ b/src/print.c @@ -21,7 +21,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include #include "system.h" #include "machine.h" -#include "new.h" +#include "alloc.h" #include "files.h" #include "gram.h" #include "state.h" diff --git a/src/reader.c b/src/reader.c index bd835913..f9c4f387 100644 --- a/src/reader.c +++ b/src/reader.c @@ -29,7 +29,7 @@ The entry point is reader(). */ #include #include "system.h" #include "files.h" -#include "new.h" +#include "alloc.h" #include "symtab.h" #include "lex.h" #include "gram.h" diff --git a/src/reduce.c b/src/reduce.c index b440516e..201864de 100644 --- a/src/reduce.c +++ b/src/reduce.c @@ -33,7 +33,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "files.h" #include "gram.h" #include "machine.h" -#include "new.h" +#include "alloc.h" extern char **tags; /* reader.c */ diff --git a/src/symtab.c b/src/symtab.c index adfe3901..6f325fc3 100644 --- a/src/symtab.c +++ b/src/symtab.c @@ -20,7 +20,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include #include "system.h" -#include "new.h" +#include "alloc.h" #include "symtab.h" #include "gram.h"