mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-19 17:23:02 +00:00
new.h renamed to alloc.h.
This commit is contained in:
26
Makefile.in
26
Makefile.in
@@ -68,7 +68,7 @@ DISTFILES = COPYING ChangeLog Makefile.in configure configure.in \
|
|||||||
LR0.c allocate.c closure.c conflicts.c derives.c \
|
LR0.c allocate.c closure.c conflicts.c derives.c \
|
||||||
files.c getargs.c gram.c lalr.c lex.c main.c nullable.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 \
|
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 \
|
symtab.h system.h types.h bison.cld build.com vmsgetargs.c \
|
||||||
vmshlp.mar README INSTALL NEWS bison.texinfo bison.info* texinfo.tex \
|
vmshlp.mar README INSTALL NEWS bison.texinfo bison.info* texinfo.tex \
|
||||||
getopt.c getopt.h getopt1.c alloca.c mkinstalldirs install-sh
|
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) \
|
$(CC) -c $(PFILES) $(DEFS) $(CPPFLAGS) $(CFLAGS) \
|
||||||
$(srcdir)/files.c $(OUTPUT_OPTION)
|
$(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
|
allocate.o: system.h
|
||||||
closure.o: system.h machine.h new.h gram.h
|
closure.o: system.h machine.h alloc.h gram.h
|
||||||
conflicts.o: system.h machine.h new.h files.h gram.h state.h
|
conflicts.o: system.h machine.h alloc.h files.h gram.h state.h
|
||||||
derives.o: system.h new.h types.h gram.h
|
derives.o: system.h alloc.h types.h gram.h
|
||||||
files.o: system.h files.h new.h gram.h
|
files.o: system.h files.h alloc.h gram.h
|
||||||
getargs.o: system.h files.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
|
lex.o: system.h files.h symtab.h lex.h
|
||||||
main.o: system.h machine.h
|
main.o: system.h machine.h
|
||||||
nullable.o: system.h types.h gram.h new.h
|
nullable.o: system.h types.h gram.h alloc.h
|
||||||
output.o: system.h machine.h new.h files.h gram.h state.h
|
output.o: system.h machine.h alloc.h files.h gram.h state.h
|
||||||
print.o: system.h machine.h new.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 new.h symtab.h lex.h gram.h
|
reader.o: system.h files.h alloc.h symtab.h lex.h gram.h
|
||||||
reduce.o: system.h machine.h files.h new.h gram.h
|
reduce.o: system.h machine.h files.h alloc.h gram.h
|
||||||
symtab.o: system.h new.h symtab.h gram.h
|
symtab.o: system.h alloc.h symtab.h gram.h
|
||||||
warshall.o: system.h machine.h
|
warshall.o: system.h machine.h
|
||||||
|
|
||||||
# Prevent GNU make v3 from overflowing arg limit on SysV.
|
# Prevent GNU make v3 from overflowing arg limit on SysV.
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include "system.h"
|
#include "system.h"
|
||||||
#include "machine.h"
|
#include "machine.h"
|
||||||
#include "new.h"
|
#include "alloc.h"
|
||||||
#include "gram.h"
|
#include "gram.h"
|
||||||
#include "state.h"
|
#include "state.h"
|
||||||
|
|
||||||
|
|||||||
@@ -51,7 +51,7 @@ Frees itemset, ruleset and internal data.
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include "system.h"
|
#include "system.h"
|
||||||
#include "machine.h"
|
#include "machine.h"
|
||||||
#include "new.h"
|
#include "alloc.h"
|
||||||
#include "gram.h"
|
#include "gram.h"
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include "system.h"
|
#include "system.h"
|
||||||
#include "machine.h"
|
#include "machine.h"
|
||||||
#include "new.h"
|
#include "alloc.h"
|
||||||
#include "files.h"
|
#include "files.h"
|
||||||
#include "gram.h"
|
#include "gram.h"
|
||||||
#include "state.h"
|
#include "state.h"
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
|
|||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include "system.h"
|
#include "system.h"
|
||||||
#include "new.h"
|
#include "alloc.h"
|
||||||
#include "types.h"
|
#include "types.h"
|
||||||
#include "gram.h"
|
#include "gram.h"
|
||||||
|
|
||||||
|
|||||||
@@ -41,7 +41,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include "system.h"
|
#include "system.h"
|
||||||
#include "files.h"
|
#include "files.h"
|
||||||
#include "new.h"
|
#include "alloc.h"
|
||||||
#include "gram.h"
|
#include "gram.h"
|
||||||
|
|
||||||
FILE *finput = NULL;
|
FILE *finput = NULL;
|
||||||
|
|||||||
@@ -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 "machine.h"
|
||||||
#include "types.h"
|
#include "types.h"
|
||||||
#include "state.h"
|
#include "state.h"
|
||||||
#include "new.h"
|
#include "alloc.h"
|
||||||
#include "gram.h"
|
#include "gram.h"
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
|
|||||||
#include "getopt.h" /* for optarg */
|
#include "getopt.h" /* for optarg */
|
||||||
#include "symtab.h"
|
#include "symtab.h"
|
||||||
#include "lex.h"
|
#include "lex.h"
|
||||||
#include "new.h"
|
#include "alloc.h"
|
||||||
|
|
||||||
/* flags set by % directives */
|
/* flags set by % directives */
|
||||||
extern int definesflag; /* for -d */
|
extern int definesflag; /* for -d */
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
|
|||||||
#include "system.h"
|
#include "system.h"
|
||||||
#include "types.h"
|
#include "types.h"
|
||||||
#include "gram.h"
|
#include "gram.h"
|
||||||
#include "new.h"
|
#include "alloc.h"
|
||||||
|
|
||||||
|
|
||||||
char *nullable;
|
char *nullable;
|
||||||
|
|||||||
@@ -105,7 +105,7 @@ YYNTBASE = ntokens.
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include "system.h"
|
#include "system.h"
|
||||||
#include "machine.h"
|
#include "machine.h"
|
||||||
#include "new.h"
|
#include "alloc.h"
|
||||||
#include "files.h"
|
#include "files.h"
|
||||||
#include "gram.h"
|
#include "gram.h"
|
||||||
#include "state.h"
|
#include "state.h"
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include "system.h"
|
#include "system.h"
|
||||||
#include "machine.h"
|
#include "machine.h"
|
||||||
#include "new.h"
|
#include "alloc.h"
|
||||||
#include "files.h"
|
#include "files.h"
|
||||||
#include "gram.h"
|
#include "gram.h"
|
||||||
#include "state.h"
|
#include "state.h"
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ The entry point is reader(). */
|
|||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
#include "system.h"
|
#include "system.h"
|
||||||
#include "files.h"
|
#include "files.h"
|
||||||
#include "new.h"
|
#include "alloc.h"
|
||||||
#include "symtab.h"
|
#include "symtab.h"
|
||||||
#include "lex.h"
|
#include "lex.h"
|
||||||
#include "gram.h"
|
#include "gram.h"
|
||||||
|
|||||||
@@ -33,7 +33,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
|
|||||||
#include "files.h"
|
#include "files.h"
|
||||||
#include "gram.h"
|
#include "gram.h"
|
||||||
#include "machine.h"
|
#include "machine.h"
|
||||||
#include "new.h"
|
#include "alloc.h"
|
||||||
|
|
||||||
|
|
||||||
extern char **tags; /* reader.c */
|
extern char **tags; /* reader.c */
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
|
|||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include "system.h"
|
#include "system.h"
|
||||||
#include "new.h"
|
#include "alloc.h"
|
||||||
#include "symtab.h"
|
#include "symtab.h"
|
||||||
#include "gram.h"
|
#include "gram.h"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user