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