Use C89 size_t for sizes from sizeof() or to malloc() or realloc().
Remove obsolete (unsigned) casts.  Sizes were unsigned int in
traditional C but are size_t in C89.
Silence some clang warnings.  Add the second pair of round brackets in
`while ((ff = ff->ff_next))` to silence -Wparentheses.  Change
`if (nc_first(...))/*nothing*/;` to `(void)nc_first(...);` to silence
-Wempty-body.  The code in compute.c nc_first() had the form
`if (x) if (y) s; else t;`.  The old indentation (before 10717cc)
suggests that the "else" belongs to the 2nd "if", so add braces like
`if (x) { if (y) s; else t; }` to silence -Wdangling-else.
Shuffle extern function declarations.  Add missing declaration for
LLparse().  Stop declaring RENAME(); it doesn't exist.  Move some
declarations from main.c to extern.h, so the C compiler may check that
the declarations are compatible with the function definitions.
Assume that standard C89 remove() is available and doesn't need the
UNLINK() wrapper.
In lib/incl, don't need to include <stdio.h> nor <stdlib.h> to use
assert().
Remove alloc.h.  If you don't clean your build, then an outdated
BUILDDIR/obj/util/LLgen/headers/alloc.h will survive but should not
cause harm, because nothing includes it.  Don't need to remove alloc.h
from util/LLgen/distr.sh, because it isn't there.
Run the bootstrap to rebuild LLgen.c, Lpars.c, tokens.c.
		
	
			
		
			
				
	
	
		
			48 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
/* $Id$ */
 | 
						|
#ifdef LL_DEBUG
 | 
						|
#include <assert.h>
 | 
						|
#define LL_assert(x)	assert(x)
 | 
						|
#else
 | 
						|
#define LL_assert(x)	/* nothing */
 | 
						|
#endif
 | 
						|
 | 
						|
extern int LLsymb;
 | 
						|
 | 
						|
#define LL_SAFE(x)	/* Nothing */
 | 
						|
#define LL_SSCANDONE(x)	if (LLsymb != x) LLsafeerror(x)
 | 
						|
#define LL_SCANDONE(x)	if (LLsymb != x) LLerror(x)
 | 
						|
#define LL_NOSCANDONE(x) LLscan(x)
 | 
						|
#ifdef LL_FASTER
 | 
						|
#define LLscan(x)	if ((LLsymb = LL_LEXI()) != x) LLerror(x)
 | 
						|
#endif
 | 
						|
 | 
						|
extern unsigned int LLscnt[];
 | 
						|
extern unsigned int LLtcnt[];
 | 
						|
extern int LLcsymb;
 | 
						|
 | 
						|
#if LL_NON_CORR
 | 
						|
extern int LLstartsymb;
 | 
						|
#endif
 | 
						|
 | 
						|
#define LLsdecr(d)	{LL_assert(LLscnt[d] > 0); LLscnt[d]--;}
 | 
						|
#define LLtdecr(d)	{LL_assert(LLtcnt[d] > 0); LLtcnt[d]--;}
 | 
						|
#define LLsincr(d)	LLscnt[d]++
 | 
						|
#define LLtincr(d)	LLtcnt[d]++
 | 
						|
 | 
						|
extern int LL_LEXI(void);
 | 
						|
extern void LLread(void);
 | 
						|
extern int LLskip(void);
 | 
						|
extern int LLnext(int);
 | 
						|
extern void LLerror(int);
 | 
						|
extern void LLsafeerror(int);
 | 
						|
extern void LLnewlevel(unsigned int *);
 | 
						|
extern void LLoldlevel(unsigned int *);
 | 
						|
#ifndef LL_FASTER
 | 
						|
extern void LLscan(int);
 | 
						|
#endif
 | 
						|
#ifndef LLNOFIRSTS
 | 
						|
extern int LLfirst(int, int);
 | 
						|
#endif
 | 
						|
#if LL_NON_CORR
 | 
						|
extern void LLnc_recover(void);
 | 
						|
#endif
 |