From f66861c401ce32a141bb6c98a0e20d1084a54f13 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Fri, 19 Nov 1993 21:27:41 +0000 Subject: [PATCH] Fix cpp problem reported by birkholz. --- v7/src/microcode/unxutl/ymkfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/v7/src/microcode/unxutl/ymkfile b/v7/src/microcode/unxutl/ymkfile index cced5ed12..c752b2314 100644 --- a/v7/src/microcode/unxutl/ymkfile +++ b/v7/src/microcode/unxutl/ymkfile @@ -1,6 +1,6 @@ /* -*-C-*- -$Id: ymkfile,v 1.86 1993/11/13 03:20:15 gjr Exp $ +$Id: ymkfile,v 1.87 1993/11/19 21:27:41 cph Exp $ Copyright (c) 1989-1993 Massachusetts Institute of Technology @@ -38,8 +38,12 @@ MIT in each case. */ #undef vax #ifndef RUN +#ifdef __STDC__ +#define RUN(program) ./##program +#else #define RUN(program) ./program #endif +#endif #ifndef SOURCES_SYSTEM #define SOURCES_SYSTEM -- 2.25.1