mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 18:06:48 +00:00
20 lines
437 B
C
20 lines
437 B
C
/*
|
|
!!DESCRIPTION!! verbose/debug version of yacc.c (if one fails and the other does not you most likely have a stack related problem)
|
|
!!ORIGIN!! LCC 4.1 Testsuite
|
|
!!LICENCE!! own, freely distributeable for non-profit. read CPYRIGHT.LCC
|
|
*/
|
|
|
|
/*#define STANDALONE*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <ctype.h>
|
|
|
|
#define INFILE "yaccdbg.in"
|
|
|
|
#define LEXDEBUG
|
|
#define YYDEBUG
|
|
|
|
#define YACCDBG
|
|
#include "yacc.c"
|