From 7dafbc4d99bd39195b64a387c2d8ea008b104423 Mon Sep 17 00:00:00 2001 From: "Janet B. Anderson" Date: Thu, 20 Feb 1992 13:04:05 +0000 Subject: [PATCH] added ifdef vxWorks --- src/libCom/calc/postfix.c | 10 +++++++++- src/libCom/postfix.c | 10 +++++++++- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/src/libCom/calc/postfix.c b/src/libCom/calc/postfix.c index 0f40e687f..9d7bd33f5 100644 --- a/src/libCom/calc/postfix.c +++ b/src/libCom/calc/postfix.c @@ -34,6 +34,7 @@ * .04 04-05-89 lrd fixed the order of some operations in the * element table and added a warning label * .05 11-26-90 lrd fix SINH, COSH, TANH + * .06 02-20-92 rcz fixed for vxWorks build */ /* @@ -77,7 +78,14 @@ * FLASE expression element not found */ -#include +#ifdef vxWorks +# include +# include +#else +# include +# include +#endif + #include #include diff --git a/src/libCom/postfix.c b/src/libCom/postfix.c index 0f40e687f..9d7bd33f5 100644 --- a/src/libCom/postfix.c +++ b/src/libCom/postfix.c @@ -34,6 +34,7 @@ * .04 04-05-89 lrd fixed the order of some operations in the * element table and added a warning label * .05 11-26-90 lrd fix SINH, COSH, TANH + * .06 02-20-92 rcz fixed for vxWorks build */ /* @@ -77,7 +78,14 @@ * FLASE expression element not found */ -#include +#ifdef vxWorks +# include +# include +#else +# include +# include +#endif + #include #include