X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/ec4d88f4965d67eda9bff4a7772cb25a33c3fdf5..b09a18c50d221b54e6bc94e03deb65ecd52c4288:/src/output.c diff --git a/src/output.c b/src/output.c index 24a77a8c..c0be5b0b 100644 --- a/src/output.c +++ b/src/output.c @@ -20,7 +20,7 @@ Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ - +#include #include "system.h" #include @@ -601,6 +601,16 @@ prepare (void) /* File names. */ MUSCLE_INSERT_STRING ("prefix", spec_name_prefix ? spec_name_prefix : "yy"); +#define DEFINE(Name) MUSCLE_INSERT_STRING (#Name, Name ? Name : "") + DEFINE (dir_prefix); + DEFINE (parser_file_name); + DEFINE (spec_defines_file); + DEFINE (spec_file_prefix); + DEFINE (spec_graph_file); + DEFINE (spec_name_prefix); + DEFINE (spec_outfile); + DEFINE (spec_verbose_file); +#undef DEFINE /* User Code. */ obstack_1grow (&pre_prologue_obstack, 0);