mirror of
https://github.com/ctm/syn68k.git
synced 2024-12-11 07:50:44 +00:00
11 lines
257 B
C
11 lines
257 B
C
|
#ifndef _reduce_h_
|
||
|
#define _reduce_h_
|
||
|
|
||
|
#include "list.h"
|
||
|
#include "hash.h"
|
||
|
|
||
|
extern List *reduce_list (List *ls, const SymbolTable *sym, int macro_level);
|
||
|
extern List *reduce (List *ls, const SymbolTable *sym, int macro_level);
|
||
|
|
||
|
#endif /* Not _reduce_h_ */
|